inferno/docker-compose.yml

22 lines
419 B
YAML

services:
client-web:
restart: unless-stopped
build:
context: ./clients/web/
dockerfile: dev.Dockerfile
ports:
- "3000:3000"
volumes:
- ./clients/web:/app
- /app/node_modules
server:
restart: unless-stopped
build:
context: ./server/
dockerfile: dev.Dockerfile
ports:
- "3001:3001"
volumes:
- ./server:/app
- .git:/app/.git