Author SHA1 Message Date
tobbbs af1739b30d Update compose.yaml 2026-07-14 17:28:26 +02:00
tobbbs 7daccdf71a Update compose.yaml 2026-07-14 16:29:27 +02:00
tobbbs cc75409d4b Update compose.yaml 2026-07-14 16:28:16 +02:00
tobbbs 9092880b3e Update compose.yaml 2026-06-02 17:05:10 +02:00
tobbbs 08c912b933 Update compose.yaml 2026-06-02 17:04:24 +02:00
tobbbs e126ce37af Add compose.yaml 2026-06-02 17:02:46 +02:00
tobbbs da83d83d9f Update README.md 2026-05-27 13:10:17 +02:00
2 changed files with 50 additions and 52 deletions
+5 -1
View File
@@ -1,3 +1,7 @@
# 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
+45 -51
View File
@@ -1,59 +1,53 @@
services: services:
newt: mealie:
image: fosrl/newt image: ghcr.io/mealie-recipes/mealie:v2.8.0
container_name: newt container_name: mealie
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}" # ports:
# - 9925:9000
deploy:
resources:
limits:
memory: 1000M #
networks: networks:
- bragi-local - bragi-local
# ports: volumes:
# - "${N8N_Port}:80" - /home/shrek/docker/stack/mealie/mealie-data:/app/data/
environment: environment:
- N8N_COMMUNITY_PACKAGES_ENABLED=true ALLOW_SIGNUP: "false"
- DB_SQLITE_POOL_SIZE=4 TZ: Europe/Berlin
- N8N_BASIC_AUTH_ACTIVE=true DB_ENGINE: postgres
- N8N_RUNNERS_ENABLED=true POSTGRES_USER: mealie
- NODE_FUNCTION_ALLOW_EXTERNAL=ws POSTGRES_PASSWORD: mealie
- N8N_ENFORCE_SETTINGS_FILE_PERMISSIONS=true POSTGRES_SERVER: postgres
- N8N_LISTEN_ADDRESS=0.0.0.0 POSTGRES_PORT: 5432
- N8N_PROXY_HOPS=1 POSTGRES_DB: mealie
- N8N_PROTOCOL=https depends_on:
- N8N_BASIC_AUTH_USER=${N8N_AUser} postgres:
- N8N_BASIC_AUTH_PASSWORD=${N8N_APass} condition: service_healthy
- N8N_HOST=${N8N_HOST} postgres:
- WEBHOOK_URL=${N8N_Webhook} networks:
- N8N_PORT=80 - bragi-local
- N8N_ENABLE_EXECUTE_COMMAND=true container_name: 04_groceries_postgres
- NODES_EXCLUDE=[] image: postgres:15
restart: always
#- NODE_TLS_REJECT_UNAUTHORIZED=0 volumes:
volumes: - /home/shrek/docker/stack/mealie/mealie-pgdata:/var/lib/postgresql/data
- /opt/00_infra/n8n:/home/node environment:
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