22 lines
566 B
YAML
22 lines
566 B
YAML
version: '3.5'
|
|
services:
|
|
|
|
# Apache with sqlite, the dev/evaluate option
|
|
kimai:
|
|
environment:
|
|
- APP_ENV=dev
|
|
- TRUSTED_HOSTS=localhost
|
|
- ADMINMAIL=admin@kimai.local
|
|
- ADMINPASS=changemeplease
|
|
volumes:
|
|
- /opt/kimai/var
|
|
ports:
|
|
- 8001:8001
|
|
restart: unless-stopped
|
|
healthcheck:
|
|
test: curl -s -o /dev/null http://localhost:8001 || exit 1
|
|
interval: 20s
|
|
start_period: 10s
|
|
timeout: 10s
|
|
retries: 3
|