You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 lines
502 B
YAML

version: '3.8'
services:
playchoo-manager-auth:
build:
context: .
dockerfile: Dockerfile.dev
ports:
- "3700:3700"
environment:
- NODE_ENV=development
- APP_PORT=3700
- REDIS_URL=${REDIS_URL:-redis://redis:6379}
env_file:
- .env
volumes:
- .:/app
- /app/node_modules
networks:
- playchoo_redis_network
command: npm run dev
networks:
playchoo_redis_network:
name: playchoo_redis_network
external: true