4 Commits
Author SHA1 Message Date
tobbbs d7af843302 Update compose.yaml 2026-05-27 13:28:28 +02:00
tobbbs 0e8df32227 Update README.md 2026-05-27 13:25:39 +02:00
tobbbs 271d835a26 Update compose.yaml 2026-05-26 16:36:43 +02:00
tobbbs 21278346fc Add compose.yaml 2026-05-26 16:35:29 +02:00
2 changed files with 33 additions and 50 deletions
+3 -1
View File
@@ -1,3 +1,5 @@
# Bragi-Local # Bragi-Local
My Compose Stacks for all my Docker Services running on my Local Server Services:
- Vikunja
- Postgres for Vikunja
+30 -49
View File
@@ -1,59 +1,40 @@
services: services:
newt: vikunja:
image: fosrl/newt image: vikunja/vikunja
container_name: newt
restart: unless-stopped
networks: networks:
- bragi-local - bragi-local
environment: environment:
- PANGOLIN_ENDPOINT=https://tunnel.doeringer.eu VIKUNJA_SERVICE_PUBLICURL: https://tasks.doeringer.eu
- NEWT_ID=yogqsqz240z1kgr VIKUNJA_DATABASE_HOST: db
- NEWT_SECRET=chw2i78vd9w9mqaeyjxq7iyrvpu6z365zgmkxxiccus76933 VIKUNJA_DATABASE_PASSWORD: Mu4snEKrHvFPxsEAS8fq
VIKUNJA_DATABASE_TYPE: postgres
hawser: VIKUNJA_DATABASE_USER: vikunja
image: ghcr.io/finsys/hawser:latest VIKUNJA_DATABASE_DATABASE: vikunja
container_name: hawser VIKUNJA_SERVICE_SECRET: MLuQnPRdYQSTFApQqsFSapyfGrbFsv
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
user: "${n8n_user}"
networks:
- bragi-local
# ports: # ports:
# - "${N8N_Port}:80" # - 3456:3456
volumes:
- /opt/docker/todo/files:/app/vikunja/files
depends_on:
db:
condition: service_healthy
restart: unless-stopped
db:
image: postgres:18
environment: environment:
- N8N_COMMUNITY_PACKAGES_ENABLED=true POSTGRES_PASSWORD: Mu4snEKrHvFPxsEAS8fq
- DB_SQLITE_POOL_SIZE=4 POSTGRES_USER: vikunja
- N8N_BASIC_AUTH_ACTIVE=true volumes:
- N8N_RUNNERS_ENABLED=true - /opt/docker/todo/db:/var/lib/postgresql
- NODE_FUNCTION_ALLOW_EXTERNAL=ws networks:
- N8N_ENFORCE_SETTINGS_FILE_PERMISSIONS=true - bragi-local
- N8N_LISTEN_ADDRESS=0.0.0.0 restart: unless-stopped
- N8N_PROXY_HOPS=1 healthcheck:
- N8N_PROTOCOL=https test: ["CMD-SHELL", "pg_isready -h localhost -U $$POSTGRES_USER"]
- N8N_BASIC_AUTH_USER=${N8N_AUser} interval: 2s
- N8N_BASIC_AUTH_PASSWORD=${N8N_APass} start_period: 30s
- 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
networks: networks:
bragi-local: bragi-local:
external: true external: true