services-garbaye/podman-vaultwarden/container-compose.yml

19 lines
352 B
YAML
Raw Normal View History

2022-11-26 22:00:34 +00:00
version: '3'
services:
app:
container_name: ${container_name}
image: ${service_image}:${service_version}
2022-11-26 22:00:34 +00:00
volumes:
- data:/data:Z
2022-11-26 22:00:34 +00:00
ports:
- ${listen_if}:${listen_port}:80
2023-08-10 19:56:29 +00:00
healthcheck:
test: ["CMD", "/healthcheck.sh"]
interval: 60s
timeout: 10s
2023-08-14 14:45:24 +00:00
retries: 3
start_period: 5s
2022-11-26 22:00:34 +00:00
volumes:
data: