Skip to content

Commit

Permalink
Fixes for Docker 25.0
Browse files Browse the repository at this point in the history
  • Loading branch information
lhvy committed Mar 28, 2024
1 parent 18a1b5a commit e340617
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions docker-compose.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
version: '3.8'

services:
mongodb:
image: mongo:6.0.5
Expand Down Expand Up @@ -33,7 +31,7 @@ services:
build:
context: ./backend
dockerfile: production.dockerfile
container_name: backend
container_name: backend-prod
ports:
- '8000:8000'
env_file:
Expand Down Expand Up @@ -64,7 +62,7 @@ services:
build:
context: ./frontend
dockerfile: production.dockerfile
container_name: frontend
container_name: frontend-prod
ports:
- '3000:80'
env_file:
Expand Down Expand Up @@ -94,7 +92,7 @@ services:
build:
context: ./backend
dockerfile: init-mongo.dockerfile
container_name: init-mongo
container_name: init-mongo-ci
env_file:
- ./env/backend.env
depends_on:
Expand Down

0 comments on commit e340617

Please sign in to comment.