peripatos.free.technology/docker-compose.yml

20 lines
391 B
YAML
Raw Normal View History

2024-02-13 11:57:33 +00:00
version: '3'
services:
app:
2024-02-13 11:57:33 +00:00
#image: ghcr.io/m4tt72/terminal:svelte
build: .
restart: unless-stopped
ports:
- '0.0.0.0:${PORT:-3000}:${PORT:-3000}'
command: >
-f
-v
-p ${PORT:-3000}
-c httpd.conf
2024-02-13 11:57:33 +00:00
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:${PORT:-3000}"]
2024-02-13 11:57:33 +00:00
interval: 200s
timeout: 200s
retries: 5