docker-compose.yaml 246 B

123456789101112
  1. version: '3.8'
  2. services:
  3. singbox:
  4. container_name: singbox
  5. build: .
  6. image: my-singbox-image:latest
  7. volumes:
  8. - ./config:/app/config
  9. ports:
  10. - "56000-56002:56000-56002"
  11. restart: always
  12. command: ["./start.sh"]