Add UptimeKuma, Searxng, Wallabag services
- Add uptime-kuma, searxng, and wallabag Docker services with Postgres integration for wallabag - Add nginx reverse proxy location blocks for /uptime-kuma/, /searxng/, /wallabag/ in both prod and dev templates - Update entrypoint.sh envsubst to include new HOST/PORT vars - Add Vite dev proxy entries for all three services - Update gitea-runner config: add self-hosted label and allow all volumes - Add Gitea CI/CD workflow Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -6,6 +6,8 @@ volumes:
|
||||
dbdata:
|
||||
uploads:
|
||||
vue_dist:
|
||||
uptime_kuma_data:
|
||||
searxng_data:
|
||||
|
||||
services:
|
||||
vue:
|
||||
@@ -32,6 +34,9 @@ services:
|
||||
- gitea
|
||||
- hasura
|
||||
- quartz
|
||||
- uptime-kuma
|
||||
- searxng
|
||||
- wallabag
|
||||
networks:
|
||||
- app-network
|
||||
ports:
|
||||
@@ -129,11 +134,49 @@ services:
|
||||
volumes:
|
||||
- ${OBSIDIAN_DIR}:/quartz/content:ro
|
||||
|
||||
uptime-kuma:
|
||||
image: louislam/uptime-kuma:1
|
||||
container_name: "${UPTIMEKUMA_HOST}"
|
||||
restart: unless-stopped
|
||||
networks:
|
||||
- app-network
|
||||
environment:
|
||||
- UPTIME_KUMA_BASE_PATH=/uptime-kuma
|
||||
volumes:
|
||||
- uptime_kuma_data:/app/data
|
||||
|
||||
searxng:
|
||||
image: searxng/searxng:latest
|
||||
container_name: "${SEARXNG_HOST}"
|
||||
restart: unless-stopped
|
||||
networks:
|
||||
- app-network
|
||||
environment:
|
||||
- BASE_URL=https://www.${DOMAIN}/searxng/
|
||||
- INSTANCE_NAME=searxng
|
||||
volumes:
|
||||
- searxng_data:/etc/searxng
|
||||
|
||||
wallabag:
|
||||
image: wallabag/wallabag:latest
|
||||
container_name: "${WALLABAG_HOST}"
|
||||
restart: unless-stopped
|
||||
networks:
|
||||
- app-network
|
||||
depends_on:
|
||||
- db
|
||||
environment:
|
||||
- SYMFONY__ENV__DOMAIN_NAME=https://www.${DOMAIN}/wallabag
|
||||
- SYMFONY__ENV__DATABASE_DRIVER=pdo_pgsql
|
||||
- SYMFONY__ENV__DATABASE_HOST=${POSTGRES_HOST}
|
||||
- SYMFONY__ENV__DATABASE_PORT=${POSTGRES_PORT}
|
||||
- SYMFONY__ENV__DATABASE_NAME=wallabag
|
||||
- SYMFONY__ENV__DATABASE_USER=${POSTGRES_USER}
|
||||
- SYMFONY__ENV__DATABASE_PASSWORD=${POSTGRES_PASSWORD}
|
||||
|
||||
gitea-runner:
|
||||
image: gitea/act_runner:latest
|
||||
container_name: "${GITEA_RUNNER_HOST}"
|
||||
profiles:
|
||||
- disabled
|
||||
environment:
|
||||
GITEA_RUNNER_NAME: ${GITEA_RUNNER_NAME}
|
||||
CONFIG_FILE: /config.yaml
|
||||
|
||||
Reference in New Issue
Block a user