From 555d37dfaac1111778c059702fe96f7f5b4dcef4 Mon Sep 17 00:00:00 2001 From: Mboehmlaender Date: Wed, 20 May 2026 13:47:17 +0200 Subject: [PATCH] Upload --- audiobookshelf/compose.yaml | 41 ++++++++++++++++++++ cloudbeaver/compose.yaml | 21 ++++++++++ filezilla/compose.yaml | 70 +++++++++++++++++++++++++--------- firefox/compose.yaml | 20 ++++++++++ gitea/compose.yaml | 52 +++++++++++++++++++++++++ immich/compose.yaml | 51 +++++++++++++++++++++++++ jellyfin/compose.yaml | 30 +++++++++++++++ mariadb/compose.yaml | 27 +++++++++++++ mvl/compose.yaml | 22 +++++++++++ nextcloud/compose.yaml | 39 +++++++++++++++++++ paperless-ai/compose.yaml | 19 ++++++++++ paperless-gpt/compose.yaml | 29 ++++++++++++++ paperless/compose.yaml | 76 +++++++++++++++++++++++++++++++++++++ pyload-ng/compose.yaml | 32 ++++++++++++++++ redis/compose.yaml | 23 +++++++++++ stackpulse/compose.yaml | 28 ++++++++++++++ termix/compose.yaml | 22 +++++++++++ vault/compose.yaml | 30 +++++++++++++++ vaultwarden/compose.yaml | 33 ++++++++++++++++ wiki/compose.yaml | 24 ++++++++++++ 20 files changed, 672 insertions(+), 17 deletions(-) create mode 100644 audiobookshelf/compose.yaml create mode 100644 cloudbeaver/compose.yaml create mode 100644 firefox/compose.yaml create mode 100644 gitea/compose.yaml create mode 100644 immich/compose.yaml create mode 100644 jellyfin/compose.yaml create mode 100644 mariadb/compose.yaml create mode 100644 mvl/compose.yaml create mode 100644 nextcloud/compose.yaml create mode 100644 paperless-ai/compose.yaml create mode 100644 paperless-gpt/compose.yaml create mode 100644 paperless/compose.yaml create mode 100644 pyload-ng/compose.yaml create mode 100644 redis/compose.yaml create mode 100644 stackpulse/compose.yaml create mode 100644 termix/compose.yaml create mode 100644 vault/compose.yaml create mode 100644 vaultwarden/compose.yaml create mode 100644 wiki/compose.yaml diff --git a/audiobookshelf/compose.yaml b/audiobookshelf/compose.yaml new file mode 100644 index 0000000..4b8a09c --- /dev/null +++ b/audiobookshelf/compose.yaml @@ -0,0 +1,41 @@ +version: "2.4" + +services: + audiobookshelf: + container_name: audiobookshelf + image: ghcr.io/advplyr/audiobookshelf + pids_limit: 2048 + user: 3000:3000 + ports: + - "80:13378" + + networks: + DMZ: + ipv4_address: 10.10.12.24 + + volumes: + - type: volume + source: audiobookshelf_data + target: /config + + - type: volume + source: audiobookshelf_data + target: /metadata + volume: + subpath: metadata + + - type: volume + source: audiobookshelf_data_audiobooks + target: /audiobooks + +volumes: + audiobookshelf_data: + external: true + + audiobookshelf_data_audiobooks: + external: true + +networks: + DMZ: + external: true + name: DMZ \ No newline at end of file diff --git a/cloudbeaver/compose.yaml b/cloudbeaver/compose.yaml new file mode 100644 index 0000000..85c233e --- /dev/null +++ b/cloudbeaver/compose.yaml @@ -0,0 +1,21 @@ +services: + cloudbeaver: + container_name: cloudbeaver + image: dbeaver/cloudbeaver:latest + restart: always + ports: + - "8978:8978" + networks: + DMZ: + ipv4_address: 10.10.12.17 + db_proxy: + volumes: + - cloudbeaver_data:/opt/cloudbeaver/workspace +networks: + DMZ: + external: true + db_proxy: + external: true +volumes: + cloudbeaver_data: + external: true \ No newline at end of file diff --git a/filezilla/compose.yaml b/filezilla/compose.yaml index 4761eeb..0114675 100644 --- a/filezilla/compose.yaml +++ b/filezilla/compose.yaml @@ -1,27 +1,63 @@ + + services: filezilla: container_name: filezilla image: jlesage/filezilla - ports: - - "5800:5800" - networks: - DMZ: - ipv4_address: 10.10.12.13 - npm_proxy: - dns: - - 1.1.1.1 - volumes: - - /srv/docker/filezilla/config:/config:rw - - pyload_download_data:/storage:rw environment: - USER_ID=3000 - GROUP_ID=3000 + - PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/opt/base/sbin:/opt/base/bin + - ENV=/root/.docker_rc + - SUP_GROUP_IDS= + - UMASK=0022 + - LANG=en_US.UTF-8 + - TZ=Etc/UTC + - KEEP_APP_RUNNING=0 + - APP_NICENESS=0 + - INSTALL_PACKAGES= + - PACKAGES_MIRROR= + - CONTAINER_DEBUG=0 + - DISPLAY_WIDTH=1920 + - DISPLAY_HEIGHT=1080 + - DARK_MODE=0 + - SECURE_CONNECTION=0 + - SECURE_CONNECTION_VNC_METHOD=SSL + - SECURE_CONNECTION_CERTS_CHECK_INTERVAL=60 + - WEB_LOCALHOST_ONLY=0 + - VNC_LOCALHOST_ONLY=0 + - WEB_LISTENING_PORT=5800 + - VNC_LISTENING_PORT=5900 + - VNC_PASSWORD= + - ENABLE_CJK_FONT=0 + - WEB_AUDIO=0 + - WEB_AUTHENTICATION=0 + - WEB_AUTHENTICATION_TOKEN_VALIDITY_TIME=24 + - WEB_AUTHENTICATION_USERNAME= + - WEB_AUTHENTICATION_PASSWORD= + - WEB_FILE_MANAGER=0 + - WEB_FILE_MANAGER_ALLOWED_PATHS=AUTO + - WEB_FILE_MANAGER_DENIED_PATHS= + - WEB_NOTIFICATION=0 + - WEB_TERMINAL=0 + networks: + DMZ: + ipv4_address: 10.10.12.13 + dns: + - 1.1.1.1 + ports: + - 5800:5800 + volumes: + - filezilla_data:/config + - pyload_download_data:/storage + volumes: - pyload_download_data: - external: true + pyload_download_data: + external: true + filezilla_data: + external: true networks: - npm_proxy: - external: true - DMZ: - external: true + DMZ: + external: true + name: DMZ \ No newline at end of file diff --git a/firefox/compose.yaml b/firefox/compose.yaml new file mode 100644 index 0000000..e24b4de --- /dev/null +++ b/firefox/compose.yaml @@ -0,0 +1,20 @@ +version: "2.4" +services: + firefox: + container_name: firefox + + volumes: + - firefox_data:/config:rw + image: jlesage/firefox + networks: + DMZ: + ipv4_address: 10.10.12.14 + +volumes: + firefox_data: + external: true + + +networks: + DMZ: + external: true \ No newline at end of file diff --git a/gitea/compose.yaml b/gitea/compose.yaml new file mode 100644 index 0000000..9b5f858 --- /dev/null +++ b/gitea/compose.yaml @@ -0,0 +1,52 @@ +version: "3" + +networks: + gitea: + external: false + DMZ: + external: true + +volumes: + gitea_data: + external: true + +services: + server: + image: docker.gitea.com/gitea:latest + container_name: gitea + environment: + - USER_UID=1000 + - USER_GID=1000 + - GITEA__database__DB_TYPE=postgres + - GITEA__database__HOST=db:5432 + - GITEA__database__NAME=gitea + - GITEA__database__USER=gitea + - GITEA__database__PASSWD=gitea + restart: always + networks: + gitea: + DMZ: + ipv4_address: 10.10.12.34 + + volumes: + - gitea_data:/data + - /etc/timezone:/etc/timezone:ro + - /etc/localtime:/etc/localtime:ro + ports: + - "3020:3000" + - "222:22" + depends_on: + - db + + db: + container_name: postgresql16 + image: docker.io/library/postgres:16 + restart: always + environment: + - POSTGRES_USER=gitea + - POSTGRES_PASSWORD=gitea + - POSTGRES_DB=gitea + networks: + - gitea + volumes: + - ./postgres:/var/lib/postgresql/data \ No newline at end of file diff --git a/immich/compose.yaml b/immich/compose.yaml new file mode 100644 index 0000000..565cec8 --- /dev/null +++ b/immich/compose.yaml @@ -0,0 +1,51 @@ +version: "2.4" +services: + immich: + container_name: immich + image: ghcr.io/imagegenius/immich + pids_limit: 2048 + ports: + - '8080:8080' + environment: + - TZ=Europe/Berlin + - DB_HOSTNAME=postgresql14 + - DB_USERNAME=postgres + - DB_PASSWORD=rabenNest7$ + - DB_DATABASE_NAME=postgres + - REDIS_HOSTNAME=redis + - DB_PORT=5432 + - REDIS_PORT=6379 + - REDIS_PASSWORD= + - MACHINE_LEARNING_GPU_ACCELERATION= + - MACHINE_LEARNING_WORKERS=1 + - MACHINE_LEARNING_WORKER_TIMEOUT=120 + - PUID=0 + - PGID=0 + - UMASK=022 + networks: + DMZ: + ipv4_address: 10.10.12.23 + db_proxy: + volumes: + - immich_data:/config:rw + - immich_photos:/photos:rw + - immich_photos_import:/import:rw + + dns: + - 1.1.1.1 + restart: unless-stopped +volumes: + immich_data: + external: true + immich_photos: + external: true + immich_photos_import: + external: true + +networks: + DMZ: + external: true + name: DMZ + db_proxy: + external: true + name: db_proxy \ No newline at end of file diff --git a/jellyfin/compose.yaml b/jellyfin/compose.yaml new file mode 100644 index 0000000..112005b --- /dev/null +++ b/jellyfin/compose.yaml @@ -0,0 +1,30 @@ +version: "2.4" +services: + jellyfin: + container_name: jellyfin + network_mode: "host" + image: jellyfin/jellyfin + pids_limit: 2048 + environment: + - PUID=1000 + - PGID=1000 + - JELLYFIN_PublishedServerUrl=http://10.10.10.21:8096 + - TZ=Europe/Berlin + - ASPNETCORE_FORWARDEDHEADERS_ENABLED=true + + volumes: + - media_data:/data/media:rw + - jellyfin_data:/config:rw + - jellyfin_cache:/cache:rw + dns: + - 10.10.10.1 + + + +volumes: + jellyfin_data: + external: true + jellyfin_cache: + external: true + media_data: + external: true diff --git a/mariadb/compose.yaml b/mariadb/compose.yaml new file mode 100644 index 0000000..c2f4146 --- /dev/null +++ b/mariadb/compose.yaml @@ -0,0 +1,27 @@ +version: "2.4" +services: + mariadb: + container_name: mariadb + image: ghcr.io/linuxserver/mariadb + pids_limit: 2048 + ports: + - '3306:3306' + environment: + - MYSQL_ROOT_PASSWORD=rabenNest7$ + - MYSQL_DATABASE=nextcloud + - MYSQL_USER=nextcloud + - MYSQL_PASSWORD=rabenNest7$ + - PUID=99 + - PGID=100 + - UMASK=022 + networks: + - db_proxy + volumes: + - mariadb_data:/config:rw + restart: unless-stopped +volumes: + mariadb_data: + external: true +networks: + db_proxy: + external: true \ No newline at end of file diff --git a/mvl/compose.yaml b/mvl/compose.yaml new file mode 100644 index 0000000..d10ea06 --- /dev/null +++ b/mvl/compose.yaml @@ -0,0 +1,22 @@ +version: '3' +services: + mediathekwebloader: + container_name: mediathekwebloader + image: ghcr.io/mboehmlaender/mediathekwebloader:latest + volumes: + - mvl_data:/app/data + restart: unless-stopped + networks: + DMZ: + ipv4_address: 10.10.12.40 + npm_proxy: + dns: + - 1.1.1.1 +networks: + npm_proxy: + external: true + DMZ: + external: true +volumes: + mvl_data: + external: true \ No newline at end of file diff --git a/nextcloud/compose.yaml b/nextcloud/compose.yaml new file mode 100644 index 0000000..0bb09f6 --- /dev/null +++ b/nextcloud/compose.yaml @@ -0,0 +1,39 @@ +version: "2.4" +services: + nextcloud: + + container_name: nextcloud + image: ghcr.io/linuxserver/nextcloud + pids_limit: 2048 + ports: + - '443:443' + environment: + - TZ=Europe/Berlin + - PUID=99 + - PGID=100 + - UMASK=022 + - PHP_UPLOAD_MAX_FILESIZE=100G # Maximale Dateigröße pro Upload + - PHP_POST_MAX_SIZE=120G # Max. POST-Daten, sollte >= Uploadmax sein + - PHP_MEMORY_LIMIT=512M # Arbeitsspeicherlimit für PHP + - PHP_MAX_INPUT_VARS=100000 # Bei sehr vielen Dateien in einem Request + - PHP_MAX_FILE_UPLOADS=10000 # Maximale Anzahl Dateien pro Upload + + networks: + DMZ: + ipv4_address: 10.10.12.15 + db_proxy: # Zugriff auf Datenbank möglich + volumes: + - nextcloud_data:/config:rw + - nextcloud_nc_data:/data:rw + restart: unless-stopped +volumes: + nextcloud_data: + external: true + nextcloud_nc_data: + external: true +networks: + DMZ: + external: true + name: DMZ + db_proxy: + external: true \ No newline at end of file diff --git a/paperless-ai/compose.yaml b/paperless-ai/compose.yaml new file mode 100644 index 0000000..e20c252 --- /dev/null +++ b/paperless-ai/compose.yaml @@ -0,0 +1,19 @@ +services: + paperless-ai: + image: clusterzx/paperless-ai + container_name: paperless-ai + restart: unless-stopped + ports: + - "3000:3000" + volumes: + - paperless-ai_data:/app/data + networks: + npm_proxy: + dns: + - 1.1.1.1 +volumes: + paperless-ai_data: + external: true +networks: + npm_proxy: + external: true diff --git a/paperless-gpt/compose.yaml b/paperless-gpt/compose.yaml new file mode 100644 index 0000000..30cadbb --- /dev/null +++ b/paperless-gpt/compose.yaml @@ -0,0 +1,29 @@ +services: + paperless-gpt: + container_name: paperless-gpt + image: icereed/paperless-gpt:latest # Docker Hub + restart: always + volumes: + - paperless-gpt_data:/app/data + networks: + npm_proxy: + ports: + - "8080:8080" + environment: + PAPERLESS_BASE_URL: "http://paperless:8000" + PAPERLESS_API_TOKEN: "01d5ce120d683230ca4286e5d467cba44e2dca03" + + LLM_PROVIDER: "openai" + LLM_MODEL: "gpt-4o" + OPENAI_API_KEY: "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" + OCR_PROVIDER: "llm" + VISION_LLM_PROVIDER: "openai" # or "ollama" + VISION_LLM_MODEL: "gpt-4o" # or "minicpm-v" + PDF_OCR_TAGGING: "true" # Optional, add tag to processed documents + PDF_OCR_COMPLETE_TAG: "ocr_gpt" # Optional, tag name +volumes: + paperless-gpt_data: + external: true +networks: + npm_proxy: + external: true \ No newline at end of file diff --git a/paperless/compose.yaml b/paperless/compose.yaml new file mode 100644 index 0000000..91724f7 --- /dev/null +++ b/paperless/compose.yaml @@ -0,0 +1,76 @@ +version: "2.4" +services: + paperless: + container_name: paperless + image: ghcr.io/paperless-ngx/paperless-ngx + pids_limit: 2048 + environment: + - TZ=Europe/Berlin + - PAPERLESS_REDIS=redis://redis/1 + - PAPERLESS_OCR_LANGUAGE=deu + - PAPERLESS_OCR_LANGUAGES= + - PAPERLESS_FILENAME_FORMAT={{ created }}-{{ correspondent }}-{{title }} + - PAPERLESS_TIME_ZONE=Europe/Berlin + - PAPERLESS_URL=http://docs.d-razz.de + - PAPERLESS_TRUSTED_PROXIES=10.10.12.10 + - PAPERLESS_ALLOWED_HOSTS=docs.d-razz.de,docs.home.arpa,paperless,10.10.10.21 + - PAPERLESS_CSRF_TRUSTED_ORIGINS=https://docs.d-razz.de,https://docs.home.arpa + - PAPERLESS_IGNORE_DATES= + - PAPERLESS_DBENGINE=postgre + - PAPERLESS_DBNAME=paperless + - PAPERLESS_DBUSER=paperless + - PAPERLESS_DBPASS=rabenNest7$ + - PAPERLESS_DBHOST=postgresql14 + - PAPERLESS_CONSUMER_RECURSIVE=true + - PAPERLESS_SECRET_KEY= + - PUID=1000 + - PGID=1000 + - PAPERLESS_APPS=allauth.socialaccount.providers.openid_connect + - PAPERLESS_SOCIAL_AUTO_SIGNUP=true + - PAPERLESS_LOGOUT_REDIRECT_URL=https://auth.d-razz.de/application/o/paperless-oidc/end-session/ + - PAPERLESS_SOCIALACCOUNT_PROVIDERS={"openid_connect":{"OAUTH_PKCE_ENABLED":true,"APPS":[{"provider_id":"authentik","name":"authentik","client_id":"XytpWhWGOWI0xNGJUlTglEgo8bD23fG6OlnlPYPP","secret":"npGW2hV61bmMngpVqtaRKLUHGaDc0vx1rKghoE9K0CfAhopnpxGRb1bqJnp3mT4vaZ77KmbLEttQYuuNpNZPzoDitKZfAiZnlJCobagmmFmwVo8q7hMF9kO9xE7Eg5Dx","settings":{"server_url":"https://auth.d-razz.de/application/o/paperless-oidc/.well-known/openid-configuration","fetch_userinfo":true}}],"SCOPE":["openid","profile","email"]}} + - PAPERLESS_CSRF_TRUSTED_ORIGINS=https://docs.d-razz.de + - PAPERLESS_OIDC_DEFAULT=true + - PAPERLESS_OIDC_AUTHENTICATION=true + - PAPERLESS_REDIRECT_LOGIN_TO_SSO=true + - USERMAP_UID=3002 + - USERMAP_GID=3003 + ports: + - 8002:8000 + networks: + db_proxy: + + volumes: + - paperless_data:/usr/src/paperless/data:rw + + + - paperless_share_export:/usr/src/paperless/export:rw + - paperless_share_consume:/usr/src/paperless/consume:rw + - paperless_share_media:/usr/src/paperless/media:rw + + - paperless_data_michael:/usr/src/paperless/media/documents/archive/Michael/Share:rw + - paperless_data_christina:/usr/src/paperless/media/documents/archive/Christina/Share:rw + - paperless_data_family:/usr/src/paperless/media/documents/archive/Family/Share:rw + + dns: + - 10.10.12.1 + restart: unless-stopped +volumes: + paperless_data: + external: true + paperless_share_media: + external: true + paperless_share_consume: + external: true + paperless_share_export: + external: true + paperless_data_michael: + external: true + paperless_data_christina: + external: true + paperless_data_family: + external: true + +networks: + db_proxy: + external: true \ No newline at end of file diff --git a/pyload-ng/compose.yaml b/pyload-ng/compose.yaml new file mode 100644 index 0000000..5f06c4e --- /dev/null +++ b/pyload-ng/compose.yaml @@ -0,0 +1,32 @@ +version: "2.4" +services: + pyload-ng: + container_name: pyload-ng + image: ghcr.io/linuxserver/pyload-ng + pids_limit: 2048 + ports: + - '8000:8000' + - '9666:9666' + environment: + - TZ=Europe/Berlin + - PUID=3000 + - PGID=3000 + networks: + DMZ: + ipv4_address: 10.10.12.16 + volumes: + - pyload_download_data:/downloads:rw + - pyload_data:/config:rw + dns: + - 1.1.1.1 + restart: unless-stopped + +volumes: + pyload_data: + external: true + pyload_download_data: + external: true +networks: + DMZ: + external: true + name: DMZ diff --git a/redis/compose.yaml b/redis/compose.yaml new file mode 100644 index 0000000..3539cbb --- /dev/null +++ b/redis/compose.yaml @@ -0,0 +1,23 @@ +version: "2.4" +services: + redis: + container_name: redis + image: redis + pids_limit: 2048 + ports: + - '6379:6379' + environment: + - TZ=Europe/Berlin + networks: + db_proxy: + volumes: + - redis_data:/data:rw + dns: + - 1.1.1.1 + restart: unless-stopped +volumes: + redis_data: + external: true +networks: + db_proxy: + external: true \ No newline at end of file diff --git a/stackpulse/compose.yaml b/stackpulse/compose.yaml new file mode 100644 index 0000000..89f00d3 --- /dev/null +++ b/stackpulse/compose.yaml @@ -0,0 +1,28 @@ +version: "2.4" +services: + stackpulse: + container_name: stackpulse + image: ghcr.io/mboehmlaender/stackpulse + ports: + - '4001:4001' + environment: + - PORTAINER_URL=https://10.10.10.21:9443/ + - PORTAINER_API_KEY=ptr_FOb9TnTWWsGYHidw8lDv2zNdRP9nDVUH+vVTWj+bPmo= + - SELF_STACK_ID=161 + - SUPERUSER_USERNAME=michael + - SUPERUSER_EMAIL=mboehmlaender@gmx.net + - SUPERUSER_PASSWORD=rabenNest7$ + networks: + DMZ: + ipv4_address: 10.10.12.10 + volumes: + - stackpulse_data:/app/backend/data + restart: always + +networks: + DMZ: + external: true + +volumes: + stackpulse_data: + external: true \ No newline at end of file diff --git a/termix/compose.yaml b/termix/compose.yaml new file mode 100644 index 0000000..9833aad --- /dev/null +++ b/termix/compose.yaml @@ -0,0 +1,22 @@ + +services: + termix: + image: ghcr.io/lukegus/termix:latest + container_name: termix + restart: unless-stopped + ports: + - '8080:8080' + volumes: + - termix_data:/app/data + environment: + PORT: '8080' + networks: + DMZ: + ipv4_address: 10.10.12.26 +volumes: + termix_data: + external: true + +networks: + DMZ: + external: true \ No newline at end of file diff --git a/vault/compose.yaml b/vault/compose.yaml new file mode 100644 index 0000000..392a060 --- /dev/null +++ b/vault/compose.yaml @@ -0,0 +1,30 @@ +services: + backend: + image: ghcr.io/mboehmlaender/vault-backend:latest + container_name: vault-backend + restart: unless-stopped + ports: + - "5001:5001" + environment: + - PORT=5001 + volumes: + - ./backend/data:/app/data + networks: + - vault_net + + frontend: + image: ghcr.io/mboehmlaender/vault-frontend:latest + container_name: vault-frontend + restart: unless-stopped + depends_on: + - backend + networks: + vault_net: + DMZ: + ipv4_address: 10.10.12.28 + +networks: + vault_net: + driver: bridge + DMZ: + external: true diff --git a/vaultwarden/compose.yaml b/vaultwarden/compose.yaml new file mode 100644 index 0000000..e6dd39a --- /dev/null +++ b/vaultwarden/compose.yaml @@ -0,0 +1,33 @@ +version: "2.4" +services: + vaultwarden: + container_name: vaultwarden + image: vaultwarden/server + pids_limit: 2048 + ports: + - '80:4743' + networks: + DMZ: + ipv4_address: 10.10.12.11 + environment: + - TZ=Europe/Berlin + - SIGNUPS_ALLOWED=false + - INVITATIONS_ALLOWED=false + - WEBSOCKET_ENABLED=true + - ADMIN_TOKEN=$argon2id$v=19$m=19456,t=2,p=1$ffK9p5/PGcOER1KXEWaTGZIDoltDOC1iYETrMdr0hsw$UgGfPNGiehuuhIdX8g2iPn18yd0v1W4ocZG7J/tW4L0 + - PUSH_ENABLED=true + - PUSH_INSTALLATION_ID=c165a5ca-e237-46b7-bc70-b0b200b0395e + - PUSH_INSTALLATION_KEY=dYchSZvG5Hv6t4nrRW0t + - PUSH_RELAY_BASE_URI=https://push.bitwarden.com + volumes: + - vaultwarden_data:/data:rw + dns: + - 1.1.1.1 + restart: unless-stopped +networks: + DMZ: + external: true + name: DMZ +volumes: + vaultwarden_data: + external: true diff --git a/wiki/compose.yaml b/wiki/compose.yaml new file mode 100644 index 0000000..6f9be53 --- /dev/null +++ b/wiki/compose.yaml @@ -0,0 +1,24 @@ +services: + wiki: + container_name: wiki + image: ghcr.io/requarks/wiki:2 + environment: + DB_TYPE: postgres + DB_HOST: postgresql17 + DB_PORT: 5432 + DB_USER: wikijs + DB_PASS: rabenNest7$ + DB_NAME: wiki + restart: unless-stopped + networks: + DMZ: + ipv4_address: 10.10.12.20 + db_proxy: + ports: + - "80:3000" + +networks: + DMZ: + external: true + db_proxy: + external: true \ No newline at end of file