lots of things

This commit is contained in:
2019-11-14 16:16:31 +01:00
parent 73b587d23d
commit 19b5488d22
11 changed files with 88 additions and 2 deletions

View File

@@ -1,6 +1,18 @@
version: '3.7'
services:
client:
container_name: client
build:
context: ./services/client
dockerfile: Dockerfile-prod
args:
- NODE_ENV=production
- REACT_APP_USERS_SERVICE_URL=${REACT_APP_USERS_SERVICE_URL}
ports:
- "3007:80"
depends_on:
- users
users:
build:
context: ./services/users
@@ -32,3 +44,4 @@ services:
- "80:80"
depends_on:
- users
- client