Adding container dependencies for OmniPoly and PortNote.
Auto-Unseal for Vault / Unseal Vault (push) Failing after 13m52s

This commit is contained in:
2025-05-13 07:14:43 -04:00
parent 79fd6f45e3
commit 40257d89ce
+21 -4
View File
@@ -3774,7 +3774,14 @@ services:
- 23693:80 - 23693:80
restart: unless-stopped restart: unless-stopped
omnipoly: omnipoly:
restart: unless-stopped container_name: omnipoly
depends_on:
languagetool:
condition: service_started
required: true
libretranslate:
condition: service_started
required: true
environment: environment:
LANGUAGE_TOOL: http://languagetool:8010 LANGUAGE_TOOL: http://languagetool:8010
LIBRETRANSLATE: http://libretranslate:5000 LIBRETRANSLATE: http://libretranslate:5000
@@ -3799,6 +3806,7 @@ services:
swag.uptime-kuma.enabled: true swag.uptime-kuma.enabled: true
swag.uptime-kuma.monitor.url: https://translate.${MY_TLD} swag.uptime-kuma.monitor.url: https://translate.${MY_TLD}
swag.uptime-kuma.monitor.interval: 300 swag.uptime-kuma.monitor.interval: 300
restart: unless-stopped
paperless-ngx: paperless-ngx:
container_name: paperless-ngx container_name: paperless-ngx
depends_on: depends_on:
@@ -3948,6 +3956,11 @@ services:
- portainer-data:/data - portainer-data:/data
portnote-web: portnote-web:
container_name: portnote container_name: portnote
depends_on:
portnote-pg-db:
condition: service_started
required: true
restart: true
environment: environment:
JWT_SECRET: ${PORTNOTE_JWT_SECRET} # Replace with a secure random string JWT_SECRET: ${PORTNOTE_JWT_SECRET} # Replace with a secure random string
USER_SECRET: ${PORTNOTE_USER_SECRET} # Replace with a secure random string USER_SECRET: ${PORTNOTE_USER_SECRET} # Replace with a secure random string
@@ -3959,7 +3972,7 @@ services:
swag: enable swag: enable
swag_proto: http swag_proto: http
swag_port: 3000 swag_port: 3000
swag_url: portall.${MY_TLD} swag_url: ports.${MY_TLD}
swag_server_custom_directive: | swag_server_custom_directive: |
access_log /config/log/$$host_access.log ; access_log /config/log/$$host_access.log ;
error_log /config/log/$$host_error.log ; error_log /config/log/$$host_error.log ;
@@ -3967,14 +3980,18 @@ services:
swag.uptime-kuma.monitor.url: https://portall.${MY_TLD} swag.uptime-kuma.monitor.url: https://portall.${MY_TLD}
swag.uptime-kuma.monitor.interval: 300 swag.uptime-kuma.monitor.interval: 300
homepage.group: System Administration homepage.group: System Administration
homepage.name: Portall homepage.name: PortNote
homepage.href: https://portall.${MY_TLD} homepage.href: https://portall.${MY_TLD}
homepage.icon: sh-portall.png homepage.icon: /icons/portnote.png
homepage.description: Management for container ports homepage.description: Management for container ports
ports: ports:
- 23186:3000 - 23186:3000
portnote-agent: portnote-agent:
container_name: portnote-agent container_name: portnote-agent
depends_on:
portnote-pg-db:
condition: service_started
required: true
image: haedlessdev/portnote-agent:latest image: haedlessdev/portnote-agent:latest
environment: environment:
DATABASE_URL: "postgresql://portnote:${PORTNOTE_POSTGRES_PASSWORD}@portnote-pg-db:5432/portnote" DATABASE_URL: "postgresql://portnote:${PORTNOTE_POSTGRES_PASSWORD}@portnote-pg-db:5432/portnote"