Some checks failed
Auto Tag Develop / tag (push) Has been cancelled
Add lesstime_logs volume for var/log/ persistence across container restarts. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
18 lines
439 B
YAML
18 lines
439 B
YAML
services:
|
|
app:
|
|
image: gitea.malio.fr/malio-dev/lesstime:${LESSTIME_IMAGE_TAG:-latest}
|
|
container_name: lesstime-app
|
|
env_file: .env
|
|
ports:
|
|
- "8081:80"
|
|
volumes:
|
|
- ./config/jwt:/var/www/html/config/jwt:ro
|
|
- ./uploads:/var/www/html/var/uploads
|
|
- lesstime_logs:/var/www/html/var/log
|
|
extra_hosts:
|
|
- "host.docker.internal:host-gateway"
|
|
restart: unless-stopped
|
|
|
|
volumes:
|
|
lesstime_logs:
|