1 2 3 4 5 6 7 8 9 10 11 12 13 14
version: "3.5" services: cdbp: build: . restart: unless-stopped command: ./start.sh ports: - "5124:5124/tcp" volumes: - "./instance:/instance" - type: bind source: ./start.sh target: /start.sh - "./app:/app"