Explorer
/opt/struktur/router/docker-compose.yml
← Zurück ↓ Download
services:
  router:
    image: node:20-alpine
    container_name: router
    working_dir: /app
    volumes:
      - ./config:/app/config
      - ./logs:/app/logs
      - ./index.js:/app/index.js
    env_file:
      - ./config/.env
    networks:
      - struktur-net
    command: ["node", "index.js"]
    restart: unless-stopped

networks:
  struktur-net:
    external: true