17 Commits
Author SHA1 Message Date
tobbbs e9ece413b8 Update compose.yaml 2026-07-21 11:10:29 +02:00
tobbbs 6456d78b83 Update compose.yaml 2026-07-21 09:09:26 +02:00
tobbbs 3b4ab67927 Update compose.yaml 2026-07-21 09:02:18 +02:00
tobbbs c0ec9684ec Delete .env 2026-07-21 08:46:08 +02:00
tobbbs b8f88ea29a Update .env 2026-07-21 08:38:38 +02:00
tobbbs e2e69a2d9b Update compose.yaml 2026-07-21 08:35:29 +02:00
tobbbs 3b7582f4f5 Update compose.yaml 2026-07-21 08:35:09 +02:00
tobbbs c21b0dc575 Add .env 2026-07-21 08:34:26 +02:00
tobbbs 0f6d59e8d9 Update compose.yaml 2026-07-21 08:32:17 +02:00
tobbbs e07471cb98 Update compose.yaml 2026-07-21 08:29:45 +02:00
tobbbs ae4a59a1cc Update compose.yaml 2026-07-21 08:28:03 +02:00
tobbbs a9f22ba516 Update compose.yaml 2026-06-04 02:31:40 +02:00
tobbbs e7ac6ebd5b Update compose.yaml 2026-06-02 10:23:49 +02:00
tobbbs cb7ba01586 Update compose.yaml 2026-06-02 10:20:03 +02:00
tobbbs 9796d8648c Update compose.yaml 2026-06-02 10:18:55 +02:00
tobbbs de5af376db Update compose.yaml 2026-06-02 10:14:43 +02:00
tobbbs 1d7b6f4d49 Add compose.yaml 2026-05-26 16:32:24 +02:00
2 changed files with 53 additions and 51 deletions
+1 -5
View File
@@ -1,7 +1,3 @@
# Bragi-Local # Bragi-Local
My Compose Stacks for all my Docker Services running on my Local Server My Compose Stacks for all my Docker Services running on my Local Server
06_maintanance:
- Lubelogger
- Postgresql for Lubelogger
+52 -46
View File
@@ -1,53 +1,59 @@
services: services:
mealie: newt:
image: ghcr.io/mealie-recipes/mealie:v2.8.0 image: fosrl/newt
container_name: mealie container_name: newt
restart: unless-stopped
networks:
- bragi-local
environment:
- PANGOLIN_ENDPOINT=https://tunnel.doeringer.eu
- NEWT_ID=yogqsqz240z1kgr
- NEWT_SECRET=chw2i78vd9w9mqaeyjxq7iyrvpu6z365zgmkxxiccus76933
hawser:
image: ghcr.io/finsys/hawser:latest
container_name: hawser
volumes:
- /var/run/docker.sock:/var/run/docker.sock
- /opt/hawser-stacks:/opt/hawser-stacks
environment:
- STACKS_DIR=/opt/hawser-stacks
- DOCKHAND_SERVER_URL=wss://hydra.doeringer.eu/api/hawser/connect
- TOKEN=Dj-xnGfioO4x2UcAS72ipxRzhP9PSJUS6F8R66vI2WQ
n8n:
image: n8nio/n8n:latest
container_name: n8n
restart: always restart: always
user: "${n8n_user}"
networks:
- bragi-local
# ports: # ports:
# - 9925:9000 # - "${N8N_Port}:80"
deploy:
resources:
limits:
memory: 1000M #
networks:
- bragi-local
volumes:
- /home/shrek/docker/stack/mealie/mealie-data:/app/data/
environment: environment:
ALLOW_SIGNUP: "false" - N8N_COMMUNITY_PACKAGES_ENABLED=true
TZ: Europe/Berlin - DB_SQLITE_POOL_SIZE=4
DB_ENGINE: postgres - N8N_BASIC_AUTH_ACTIVE=true
POSTGRES_USER: mealie - N8N_RUNNERS_ENABLED=true
POSTGRES_PASSWORD: mealie - NODE_FUNCTION_ALLOW_EXTERNAL=ws
POSTGRES_SERVER: postgres - N8N_ENFORCE_SETTINGS_FILE_PERMISSIONS=true
POSTGRES_PORT: 5432 - N8N_LISTEN_ADDRESS=0.0.0.0
POSTGRES_DB: mealie - N8N_PROXY_HOPS=1
depends_on: - N8N_PROTOCOL=https
postgres: - N8N_BASIC_AUTH_USER=${N8N_AUser}
condition: service_healthy - N8N_BASIC_AUTH_PASSWORD=${N8N_APass}
postgres: - N8N_HOST=${N8N_HOST}
networks: - WEBHOOK_URL=${N8N_Webhook}
- bragi-local - N8N_PORT=80
container_name: 04_groceries_postgres - N8N_ENABLE_EXECUTE_COMMAND=true
image: postgres:15 - NODES_EXCLUDE=[]
restart: always
volumes: #- NODE_TLS_REJECT_UNAUTHORIZED=0
- /home/shrek/docker/stack/mealie/mealie-pgdata:/var/lib/postgresql/data volumes:
environment: - /opt/00_infra/n8n:/home/node
POSTGRES_PASSWORD: mealie
POSTGRES_USER: mealie
PGUSER: mealie
healthcheck:
test:
- CMD
- pg_isready
interval: 30s
timeout: 20s
retries: 3
volumes:
mealie-data: null
mealie-pgdata: null
networks: networks:
bragi-local: bragi-local:
external: true external: true