22 lines
495 B
YAML
22 lines
495 B
YAML
services:
|
|
tonehaus:
|
|
# image: tonehaus/tonehaus:dev-arm64
|
|
image: git.ntbx.io/boris/tonehaus:latest
|
|
container_name: tonehaus
|
|
restart: unless-stopped
|
|
volumes:
|
|
- uploads:/var/www/html/public/uploads
|
|
- sqlite_data:/var/www/html/var/data
|
|
ports:
|
|
- "8085:80"
|
|
env_file:
|
|
- .env
|
|
healthcheck:
|
|
test: ["CMD", "curl", "-f", "http://localhost:80/healthz"]
|
|
interval: 10s
|
|
timeout: 3s
|
|
retries: 5
|
|
|
|
volumes:
|
|
sqlite_data:
|
|
uploads: |