docker-compose.yml 239 B

12345678910111213
  1. services:
  2. byreal-copy:
  3. build: .
  4. container_name: byreal-copy
  5. restart: unless-stopped
  6. ports:
  7. - "3009:3000"
  8. volumes:
  9. - ./data:/app/data
  10. env_file:
  11. - .env
  12. environment:
  13. - NODE_ENV=production