For a reason, current wget versions error out when using localhost instead of 127.0.0.1 as the healthcheck for docker services. Probably has something to do with dns resolution - either on docker or wget end, but have not looked to deep into it.
25 lines
514 B
Django/Jinja
25 lines
514 B
Django/Jinja
version: '3.4'
|
|
|
|
services:
|
|
app:
|
|
image: "{{ stack_image }}:{{ shaarli_version }}"
|
|
healthcheck:
|
|
test: ["CMD", "wget", "--quiet", "--spider", "--tries=1", "http://127.0.0.1:80"]
|
|
interval: 1m
|
|
timeout: 10s
|
|
retries: 3
|
|
start_period: 1m
|
|
networks:
|
|
- "{{ docker_swarm_public_network_name }}"
|
|
volumes:
|
|
- data:/var/www/shaarli/data
|
|
- cache:/var/www/shaarli/cache
|
|
|
|
volumes:
|
|
data:
|
|
cache:
|
|
|
|
networks:
|
|
"{{ docker_swarm_public_network_name }}":
|
|
external: true
|
|
|