Skip to content

Commit

Permalink
BHEtter container
Browse files Browse the repository at this point in the history
  • Loading branch information
KevinMind committed Jan 31, 2025
1 parent 07fab36 commit f8175e8
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 17 deletions.
24 changes: 9 additions & 15 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -1,17 +1,11 @@
{
"name": "Addons Server Development",
"dockerComposeFile": ["../docker-compose.yml"],
"service": "web",
"runServices": ["web", "nginx"],
"workspaceFolder": "/data/olympia",
"customizations": {},
"forwardPorts": ["nginx:80"],
"portsAttributes": {
"80": {
"label": "nginx",
"onAutoForward": "notify"
}
},
"initializeCommand": "make up_pre",
"postStartCommand": "make initialize"
"name": "Addons-Server Devcontainer",
"image": "mcr.microsoft.com/devcontainers/base:bullseye",
"features": {
"ghcr.io/devcontainers/features/docker-in-docker": {
"version": "latest",
"enableNonRootDocker": "true",
"moby": "true"
}
}
}
10 changes: 10 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# To get started with Dependabot version updates, you'll need to specify which
# package ecosystems to update and where the package manifests are located.
# Please see the documentation for more information:
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
# https://containers.dev/guide/dependabot

version: 2
updates:
- package-ecosystem: "devcontainers"
directory: "/"
schedule:
interval: weekly
- package-ecosystem: "npm"
directory: "/"
schedule:
Expand Down
7 changes: 5 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
*.css.tmp
.devcontainer
.devcontainer/*
*.egg-info
*.js.tmp
*.less.css
Expand Down Expand Up @@ -54,6 +54,9 @@ tmp/*
# End of .gitignore. Please keep this in sync with the top section of .dockerignore

# do not ignore the following files
!.devcontainer/devcontainer.json
!.devcontainer/docker-compose.yml
!.devcontainer/Dockerfile
!deps/.gitkeep
!docker-compose.private.yml
!.devcontainer/docker-compose.devcontainer.yml
!private/README.md

0 comments on commit f8175e8

Please sign in to comment.