Make docker not run on localhost (#31)

pull/33/head
Justin O'Boyle 2022-12-13 08:25:25 -05:00 committed by GitHub
parent 535715932d
commit 7ac8bd7af8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -7,13 +7,13 @@ services:
expose: expose:
- 3001 - 3001
ports: ports:
- "127.0.0.1:3001:3001" - "0.0.0.0:3001:3001"
web: web:
build: ./web/ build: ./web/
expose: expose:
- 3000 - 3000
ports: ports:
- "127.0.0.1:3000:3000" - "0.0.0.0:3000:3000"
volumes: volumes:
db: db:
driver: local driver: local