Temporarily configure docker-compose for dev/debug
This commit is contained in:
parent
526990704b
commit
76cb73bb03
4 changed files with 30 additions and 7 deletions
|
|
@ -2,7 +2,10 @@ version: "3.5"
|
|||
|
||||
services:
|
||||
server:
|
||||
build: ./server
|
||||
# build: ./server
|
||||
build:
|
||||
context: ./server
|
||||
dockerfile: Dockerfile.debug
|
||||
networks:
|
||||
- web
|
||||
- internal
|
||||
|
|
@ -16,6 +19,8 @@ services:
|
|||
ports:
|
||||
# TODO remove in prod
|
||||
- 8000:8000
|
||||
volumes:
|
||||
- ./client/dist:/src/public:ro
|
||||
database:
|
||||
image: postgres
|
||||
environment:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue