fixed docker settings

This commit is contained in:
Sebastian
2021-09-24 17:26:03 -06:00
parent 1efb892053
commit 0acc51dbd2
10 changed files with 23 additions and 23 deletions
+7 -11
View File
@@ -3,23 +3,21 @@ version: "3"
services:
scouting-client:
container_name: "scouting-client"
restart: unless-stopped
env_file:
- .env
build:
context: ./client
dockerfile: ./Dockerfile
env_file:
- .env
expose:
- 3000
- 5000
- 80
ports:
- "3000:3000"
- "5000:5000"
volumes:
- ./client:/app
- "80:80/tcp"
couchdb:
container_name: "scouting-server"
restart: unless-stopped
env_file:
- .env
build:
context: ./server
dockerfile: ./Dockerfile
@@ -27,8 +25,6 @@ services:
- 5984
ports:
- "5984:5984"
env_file:
- .env
environment:
- COUCHDB_HOST=couchdb
- COUCHDB_PORT=5984