timelinize.yml
· 592 B · YAML
原始文件
services:
timelinize:
image: ghcr.io/timelinize/timelinize
container_name: TimeLinize
user: 0:0
healthcheck:
test: timeout 10s bash -c ':> /dev/tcp/127.0.0.1/12002' || exit 1
interval: 10s
timeout: 5s
retries: 3
start_period: 90s
ports:
- 12002:12002
volumes:
- /volume1/docker/timelinize/repo:/repo
- /volume1/docker/timelinize/import:/import
- /volume1/docker/timelinize/config:/app/.config/timelinize
environment:
TLZ_ORIGIN: https://timelinize.mariushosting.synology.me
restart: on-failure:5
| 1 | services: |
| 2 | timelinize: |
| 3 | image: ghcr.io/timelinize/timelinize |
| 4 | container_name: TimeLinize |
| 5 | user: 0:0 |
| 6 | healthcheck: |
| 7 | test: timeout 10s bash -c ':> /dev/tcp/127.0.0.1/12002' || exit 1 |
| 8 | interval: 10s |
| 9 | timeout: 5s |
| 10 | retries: 3 |
| 11 | start_period: 90s |
| 12 | ports: |
| 13 | - 12002:12002 |
| 14 | volumes: |
| 15 | - /volume1/docker/timelinize/repo:/repo |
| 16 | - /volume1/docker/timelinize/import:/import |
| 17 | - /volume1/docker/timelinize/config:/app/.config/timelinize |
| 18 | environment: |
| 19 | TLZ_ORIGIN: https://timelinize.mariushosting.synology.me |
| 20 | restart: on-failure:5 |