Files
kener/docker-compose.yml
T
Raj Nandan Sharma c57f75d1ea push 0.0.16 to git
2024-11-12 21:32:29 +05:30

22 lines
451 B
YAML

version: '3.7'
services:
kener:
build:
context: .
dockerfile: Dockerfile
container_name: kener
env_file: .env
environment:
- TZ=Etc/GMT
- PUID=911
- PGID=911
ports:
- "3001:3001"
volumes:
- ./database:/app/database:rw
restart: unless-stopped
healthcheck:
test: ["CMD", "wget", "--spider", "http://localhost:3001"]
interval: 30s
timeout: 30s
retries: 3