Compare commits
6 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 93de2b342c | |||
| cae84dbe3e | |||
| 302f9433e1 | |||
| 7bac47af7b | |||
| 38171fc963 | |||
| 9891d538fc |
+17
-13
@@ -523,11 +523,13 @@ services:
|
|||||||
bunkerweb:
|
bunkerweb:
|
||||||
container_name: bunkerweb
|
container_name: bunkerweb
|
||||||
environment:
|
environment:
|
||||||
SERVER_NAME: www.trez.wtf
|
|
||||||
API_WHITELIST_IP: 172.18.0.0/16 192.168.1.0/24
|
API_WHITELIST_IP: 172.18.0.0/16 192.168.1.0/24
|
||||||
USE_REAL_IP: yes
|
|
||||||
REAL_IP_FROM: 172.18.0.0/16
|
REAL_IP_FROM: 172.18.0.0/16
|
||||||
REAL_IP_HEADER: X-Forwarded-For
|
REAL_IP_HEADER: X-Forwarded-For
|
||||||
|
REVERSE_PROXY_HOST: http://swag:80
|
||||||
|
SERVER_NAME: bunker.trez.wtf
|
||||||
|
USE_REAL_IP: yes
|
||||||
|
USE_REVERSE_PROXY: yes
|
||||||
expose:
|
expose:
|
||||||
- 8080
|
- 8080
|
||||||
- 8443
|
- 8443
|
||||||
@@ -549,8 +551,13 @@ services:
|
|||||||
bunkerweb-ui:
|
bunkerweb-ui:
|
||||||
container_name: bunkerweb-ui
|
container_name: bunkerweb-ui
|
||||||
depends_on:
|
depends_on:
|
||||||
- bunkerweb
|
bunkerweb:
|
||||||
- docker-socket-proxy
|
condition: service_started
|
||||||
|
required: true
|
||||||
|
restart: true
|
||||||
|
docker-socket-proxy:
|
||||||
|
condition: service_started
|
||||||
|
required: true
|
||||||
environment:
|
environment:
|
||||||
DOCKER_HOST: tcp://dockerproxy:2375
|
DOCKER_HOST: tcp://dockerproxy:2375
|
||||||
expose:
|
expose:
|
||||||
@@ -558,7 +565,7 @@ services:
|
|||||||
image: bunkerity/bunkerweb-ui:latest
|
image: bunkerity/bunkerweb-ui:latest
|
||||||
labels:
|
labels:
|
||||||
homepage.group: Privacy/Security
|
homepage.group: Privacy/Security
|
||||||
homepage.name: Bunkerweb
|
homepage.name: Bunker Web
|
||||||
homepage.href: https://bunker.${MY_TLD}
|
homepage.href: https://bunker.${MY_TLD}
|
||||||
homepage.icon: bunkerweb.svg
|
homepage.icon: bunkerweb.svg
|
||||||
homepage.description: Next-gen WAF
|
homepage.description: Next-gen WAF
|
||||||
@@ -2843,7 +2850,7 @@ services:
|
|||||||
container_name: lobe-chat
|
container_name: lobe-chat
|
||||||
depends_on:
|
depends_on:
|
||||||
lobe-chat-pg-db:
|
lobe-chat-pg-db:
|
||||||
condition: service_healthy
|
condition: service_started
|
||||||
required: true
|
required: true
|
||||||
minio:
|
minio:
|
||||||
condition: service_started
|
condition: service_started
|
||||||
@@ -2854,7 +2861,7 @@ services:
|
|||||||
environment:
|
environment:
|
||||||
APP_URL: https://ai.trez.wtf/
|
APP_URL: https://ai.trez.wtf/
|
||||||
KEY_VAULTS_SECRET: ${LOBECHAT_KEY_VAULT_SECRET}
|
KEY_VAULTS_SECRET: ${LOBECHAT_KEY_VAULT_SECRET}
|
||||||
DATABASE_URL: postgresql://lobe:${LOBECHAT_PG_DB_PASSWD}@postgresql:5432/lobe
|
DATABASE_URL: postgresql://lobe:${LOBECHAT_PG_DB_PASSWD}@lobe-chat-pg-db:5432/lobe
|
||||||
NEXTAUTH_URL: https://lobe.example.com/api/auth
|
NEXTAUTH_URL: https://lobe.example.com/api/auth
|
||||||
NEXT_AUTH_SECRET: ${LOBECHAT_NEXT_AUTH_SECRET}
|
NEXT_AUTH_SECRET: ${LOBECHAT_NEXT_AUTH_SECRET}
|
||||||
NEXT_AUTH_SSO_PROVIDERS: zitadel
|
NEXT_AUTH_SSO_PROVIDERS: zitadel
|
||||||
@@ -2891,14 +2898,10 @@ services:
|
|||||||
container_name: lobe-chat-pg-db
|
container_name: lobe-chat-pg-db
|
||||||
environment:
|
environment:
|
||||||
POSTGRES_DB: lobe
|
POSTGRES_DB: lobe
|
||||||
|
POSTGRES_USER: lobe
|
||||||
POSTGRES_PASSWORD: ${LOBECHAT_PG_DB_PASSWD}
|
POSTGRES_PASSWORD: ${LOBECHAT_PG_DB_PASSWD}
|
||||||
expose:
|
expose:
|
||||||
- 5432
|
- 5432
|
||||||
healthcheck:
|
|
||||||
test: ['CMD-SHELL', 'pg_isready -U postgres']
|
|
||||||
interval: 5s
|
|
||||||
timeout: 5s
|
|
||||||
retries: 5
|
|
||||||
image: pgvector/pgvector:pg16
|
image: pgvector/pgvector:pg16
|
||||||
volumes:
|
volumes:
|
||||||
- ${DOCKER_VOLUME_CONFIG}/lobechat/db:/var/lib/postgresql/data
|
- ${DOCKER_VOLUME_CONFIG}/lobechat/db:/var/lib/postgresql/data
|
||||||
@@ -3605,7 +3608,7 @@ services:
|
|||||||
image: eduardolat/pgbackweb:latest
|
image: eduardolat/pgbackweb:latest
|
||||||
labels:
|
labels:
|
||||||
homepage.group: System Administration
|
homepage.group: System Administration
|
||||||
homepage.name: PGBackweb
|
homepage.name: PG Back Web
|
||||||
homepage.href: https://pg.${MY_TLD}
|
homepage.href: https://pg.${MY_TLD}
|
||||||
homepage.icon: sh-pg-back-web.svg
|
homepage.icon: sh-pg-back-web.svg
|
||||||
homepage.description: Backups for PostgreSQL
|
homepage.description: Backups for PostgreSQL
|
||||||
@@ -4622,6 +4625,7 @@ services:
|
|||||||
PGID: ${PGID}
|
PGID: ${PGID}
|
||||||
APP_KEY: ${SPEEDTEST_TRACKER_APP_KEY}
|
APP_KEY: ${SPEEDTEST_TRACKER_APP_KEY}
|
||||||
DB_CONNECTION: sqlite
|
DB_CONNECTION: sqlite
|
||||||
|
SPEEDTEST_SCHEDULE: 15 */3 * * *
|
||||||
labels:
|
labels:
|
||||||
homepage.name: Speedtest Tracker
|
homepage.name: Speedtest Tracker
|
||||||
homepage.group: System Administration
|
homepage.group: System Administration
|
||||||
|
|||||||
Reference in New Issue
Block a user