Dockerize app

This commit is contained in:
2026-03-30 21:35:37 +02:00
parent e81286b394
commit b6f831631f
5 changed files with 70 additions and 5 deletions
+21
View File
@@ -0,0 +1,21 @@
services:
quay:
build:
context: .
dockerfile: Dockerfile
container_name: quay
env_file:
- .env
ports:
- '8080:4321'
volumes:
- ./config:/config
- ./mydeploys:/deploys
restart: unless-stopped
healthcheck:
test:
['CMD', 'wget', '--no-verbose', '--tries=1', '--spider', 'http://localhost/health']
interval: 30s
timeout: 10s
retries: 3
start_period: 40s