Skip to content

Commit

Permalink
chore: Use $APP_NAMESPACE as docker compose name
Browse files Browse the repository at this point in the history
  • Loading branch information
ambroisemaupate committed Oct 14, 2024
1 parent 72ff825 commit 71702c5
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion compose.prod.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Production template
# Replace “my-registry/roadiz_skeleton” with your own project registry URL
name: skeleton
name: ${APP_NAMESPACE}
services:
db:
image: mysql:8.0
Expand Down
2 changes: 1 addition & 1 deletion compose.restore.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Restoring from a backup into development environment
# Separate file to avoid running the restore services when using docker-compose up
# docker compose -f compose.restore.yml --env-file restic.env run --rm restore_files
name: skeleton
name: ${APP_NAMESPACE}
services:
restore_files:
# Keep the same hostname for all Restic services
Expand Down
2 changes: 1 addition & 1 deletion compose.symfony.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#
# Only use this docker compose template if you prefer using symfony server:start
#
name: skeleton
name: ${APP_NAMESPACE}
services:
db:
build:
Expand Down
2 changes: 1 addition & 1 deletion compose.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: skeleton
name: ${APP_NAMESPACE}
services:
db:
build:
Expand Down

0 comments on commit 71702c5

Please sign in to comment.