Skip to content

Commit

Permalink
Remove extraneous docker compose settings
Browse files Browse the repository at this point in the history
  • Loading branch information
gdevenyi committed May 23, 2024
1 parent 104f04f commit 5791f1b
Showing 1 changed file with 0 additions and 11 deletions.
11 changes: 0 additions & 11 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
version: '3.8'

services:
frontend:
build:
Expand All @@ -10,8 +8,6 @@ services:
- "4200:4200"
volumes:
- ./worklenz-frontend:/app
networks:
- worklenz_network

backend:
build:
Expand All @@ -26,8 +22,6 @@ services:
- DATABASE_URL=postgres://worklenz_user:worklenz_password@db:5432/worklenz_db
volumes:
- ./worklenz-backend:/app
networks:
- worklenz_network

db:
image: postgres:15.6
Expand All @@ -38,11 +32,6 @@ services:
POSTGRES_DB: worklenz_db
volumes:
- postgres_data:/var/lib/postgresql/data
networks:
- worklenz_network

volumes:
postgres_data:

networks:
worklenz_network:

0 comments on commit 5791f1b

Please sign in to comment.