aboutsummaryrefslogtreecommitdiff
path: root/docker-compose.yml
blob: 6f7040098e724bb82bffa70c32f4cb5253055f6c (plain)
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"
bgstack15