Skip to content

Commit

Permalink
removing container name
Browse files Browse the repository at this point in the history
  • Loading branch information
qtrinh2 committed Sep 12, 2024
1 parent d1e9903 commit 3636c61
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 4 deletions.
2 changes: 0 additions & 2 deletions django/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ services:
app:
build: .
image: rrchnm/cicd-testing-django
container_name: cicd-testing-django--app
environment:
- DEBUG=True
- DJANGO_SECRET_KEY=thisisnotasecretkey
Expand Down Expand Up @@ -32,7 +31,6 @@ services:
condition: service_healthy
db:
image: postgres:16
container_name: cicd-testing-django--db
environment:
- POSTGRES_HOST=db
- POSTGRES_DB=db_dj
Expand Down
2 changes: 0 additions & 2 deletions django/docker-compose.yml.j2
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ name: {{ compose_stack_name }}
services:
app:
image: ghcr.io/{{ template.git.package.image_name }}:{{ template.git.package.tag }}
container_name: {{ template.name }}_app
restart: always
environment:
- DEBUG={{ template.env.debug_flag }}
Expand All @@ -30,7 +29,6 @@ services:
condition: service_healthy
db:
image: postgres:12
container_name: {{ template.name }}_db
restart: always
environment:
- POSTGRES_DB={{ template.env.db_name }}
Expand Down

0 comments on commit 3636c61

Please sign in to comment.