From 6ee74cfe15f7bf3eb66479663ca3671fa38c0fdd Mon Sep 17 00:00:00 2001 From: Peter Wood Date: Tue, 29 Apr 2025 14:34:42 -0400 Subject: [PATCH] Remove mealie service from docker-compose.yml and add memos_prod.db to .gitignore --- .gitignore | 1 + mealie/docker-compose.yml | 54 --------------------------------------- 2 files changed, 1 insertion(+), 54 deletions(-) delete mode 100644 mealie/docker-compose.yml diff --git a/.gitignore b/.gitignore index c54a96c..655843d 100644 --- a/.gitignore +++ b/.gitignore @@ -23,3 +23,4 @@ pdf/stirling/latest/config/*.db # ignore environment files .env +memos/.memos/memos_prod.db diff --git a/mealie/docker-compose.yml b/mealie/docker-compose.yml deleted file mode 100644 index c969417..0000000 --- a/mealie/docker-compose.yml +++ /dev/null @@ -1,54 +0,0 @@ -services: - mealie: - image: ghcr.io/mealie-recipes/mealie:latest - container_name: mealie - restart: always - ports: - - 9925:9000 - deploy: - resources: - limits: - memory: 1000M - volumes: - - mealie-data:/app/data/ - environment: - ALLOW_SIGNUP: false - PUID: 1000 - PGID: 1000 - TZ: America/New_York - MAX_WORKERS: 1 - WEB_CONCURRENCY: 1 - BASE_URL: ${BASE_URL} - # Database Settings - DB_ENGINE: ${DATABASE_TYPE} - POSTGRES_USER: ${POSTGRES_USER} - POSTGRES_PASSWORD: ${POSTGRES_PASSWORD} - POSTGRES_SERVER: ${POSTGRES_SERVER} - POSTGRES_PORT: ${POSTGRES_PORT} - POSTGRES_DB: ${POSTGRES_DB} - depends_on: - postgres: - condition: service_healthy - labels: - - diun.enable=true - postgres: - container_name: postgres - image: postgres:15 - restart: always - volumes: - - mealie-pgdata:/var/lib/postgresql/data - environment: - POSTGRES_PASSWORD: ${POSTGRES_USER} - POSTGRES_USER: ${POSTGRES_PASSWORD} - healthcheck: - test: - - CMD - - pg_isready - interval: 30s - timeout: 20s - retries: 3 - labels: - - diun.enable=true -volumes: - mealie-data: null - mealie-pgdata: null