aboutsummaryrefslogtreecommitdiff
path: root/docker-compose.yml
blob: f20fa8393dac7ff85306764e88358feb8c1114e7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
version: "3"

services:
  kennel:
    restart: always
    build: .
    healthcheck:
      test: ["CMD", "wget", "--spider", "http://localhost:8000/healthcheck"]
      interval: 5s
      timeout: 10s
      retries: 5
    env_file: .env
    volumes:
      - ./data:/app/data
    ports:
      - "127.0.0.1:60613:8000"