salix/docker-compose.yml

22 lines
445 B
YAML

version: '2'
services:
salix:
build:
context: ./services/salix
ports:
- "3001:3001"
account:
build:
context: ./services/account
ports:
- "3000:3000"
nginx:
build:
context: ./@salix
ports:
- "8080:8080"
client:
build:
context: ./services/client
ports:
- "3002:3002"