docker – Blame information for rev 53

Subversion Repositories:
Rev:
Rev Author Line No. Line
2 office 1 version: '3.7'
2  
3 services:
4 gotify:
5 image: gotify/server
6 ports:
7 - "50111:80"
53 office 8 healthcheck:
9 test: curl -f http://localhost:80/health || exit 1
10 interval: 1m
11 timeout: 10s
12 retries: 3
13 start_period: 60s
2 office 14 volumes:
15 - /mnt/docker/data/gotify:/app/data
16 environment:
17 - TZ="Etc/UTC"