Compare commits
7
Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
af1739b30d | ||
|
|
7daccdf71a | ||
|
|
cc75409d4b | ||
|
|
9092880b3e | ||
|
|
08c912b933 | ||
|
|
e126ce37af | ||
|
|
da83d83d9f |
@@ -1,3 +1,7 @@
|
||||
# Bragi-Local
|
||||
|
||||
My Compose Stacks for all my Docker Services running on my Local Server
|
||||
|
||||
06_maintanance:
|
||||
- Lubelogger
|
||||
- Postgresql for Lubelogger
|
||||
+45
-51
@@ -1,59 +1,53 @@
|
||||
services:
|
||||
newt:
|
||||
image: fosrl/newt
|
||||
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
|
||||
mealie:
|
||||
image: ghcr.io/mealie-recipes/mealie:v2.8.0
|
||||
container_name: mealie
|
||||
restart: always
|
||||
user: "${n8n_user}"
|
||||
# ports:
|
||||
# - 9925:9000
|
||||
deploy:
|
||||
resources:
|
||||
limits:
|
||||
memory: 1000M #
|
||||
networks:
|
||||
- bragi-local
|
||||
# ports:
|
||||
# - "${N8N_Port}:80"
|
||||
environment:
|
||||
- N8N_COMMUNITY_PACKAGES_ENABLED=true
|
||||
- DB_SQLITE_POOL_SIZE=4
|
||||
- N8N_BASIC_AUTH_ACTIVE=true
|
||||
- N8N_RUNNERS_ENABLED=true
|
||||
- NODE_FUNCTION_ALLOW_EXTERNAL=ws
|
||||
- N8N_ENFORCE_SETTINGS_FILE_PERMISSIONS=true
|
||||
- N8N_LISTEN_ADDRESS=0.0.0.0
|
||||
- N8N_PROXY_HOPS=1
|
||||
- N8N_PROTOCOL=https
|
||||
- N8N_BASIC_AUTH_USER=${N8N_AUser}
|
||||
- N8N_BASIC_AUTH_PASSWORD=${N8N_APass}
|
||||
- N8N_HOST=${N8N_HOST}
|
||||
- WEBHOOK_URL=${N8N_Webhook}
|
||||
- N8N_PORT=80
|
||||
- N8N_ENABLE_EXECUTE_COMMAND=true
|
||||
- NODES_EXCLUDE=[]
|
||||
|
||||
#- NODE_TLS_REJECT_UNAUTHORIZED=0
|
||||
volumes:
|
||||
- /opt/00_infra/n8n:/home/node
|
||||
|
||||
|
||||
- /home/shrek/docker/stack/mealie/mealie-data:/app/data/
|
||||
environment:
|
||||
ALLOW_SIGNUP: "false"
|
||||
TZ: Europe/Berlin
|
||||
DB_ENGINE: postgres
|
||||
POSTGRES_USER: mealie
|
||||
POSTGRES_PASSWORD: mealie
|
||||
POSTGRES_SERVER: postgres
|
||||
POSTGRES_PORT: 5432
|
||||
POSTGRES_DB: mealie
|
||||
depends_on:
|
||||
postgres:
|
||||
condition: service_healthy
|
||||
postgres:
|
||||
networks:
|
||||
- bragi-local
|
||||
container_name: 04_groceries_postgres
|
||||
image: postgres:15
|
||||
restart: always
|
||||
volumes:
|
||||
- /home/shrek/docker/stack/mealie/mealie-pgdata:/var/lib/postgresql/data
|
||||
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:
|
||||
bragi-local:
|
||||
external: true
|
||||
external: true
|
||||
Reference in New Issue
Block a user