Skip to content

Commit

Permalink
Another docker compose rename
Browse files Browse the repository at this point in the history
  • Loading branch information
komali2 committed Jul 23, 2024
1 parent 5ded757 commit 57dbacf
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
8 changes: 8 additions & 0 deletions docker-compose.prod.yml → docker-compose.dev.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,11 @@ services:
- .env
depends_on:
- psqldbgame
volumes:
- type: bind
source: ./app
target: /app
read_only: true

psqldbgame:
image: postgres
Expand All @@ -19,3 +24,6 @@ services:
- 3306:5432
env_file:
- .env

volumes:
app:
10 changes: 1 addition & 9 deletions docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,11 @@ services:
build:
context: ./
ports:
- 8000:8000
- 80:8000
env_file:
- .env
depends_on:
- psqldbgame
volumes:
- type: bind
source: ./app
target: /app
read_only: true

psqldbgame:
image: postgres
Expand All @@ -24,6 +19,3 @@ services:
- 3306:5432
env_file:
- .env

volumes:
app:

0 comments on commit 57dbacf

Please sign in to comment.