Replace Dockerfile and docker-compose.yml with .meal versions, update references
CI / test-and-package (push) Successful in 1m53s

This commit is contained in:
agentbox
2026-08-01 05:52:12 +00:00
parent 66ee072046
commit 219003dffb
5 changed files with 40 additions and 67 deletions
+17 -12
View File
@@ -1,17 +1,22 @@
services:
dind:
image: docker:dind
restart: unless-stopped
privileged: true
environment:
DOCKER_TLS_CERTDIR: ""
agentbox:
meal-tracker:
build:
context: .
dockerfile: Dockerfile
ports:
- "5000:5000"
volumes:
- meal-data:/data
environment:
DOCKER_HOST: tcp://dind:2375
depends_on:
dind:
condition: service_started
env_file: .env
- SECRET_KEY=${SECRET_KEY:-change-me-in-production}
restart: unless-stopped
hostname: meal-tracker
networks:
- caddy
volumes:
meal-data:
networks:
caddy:
external: true