mirror of
https://github.com/haiwen/seafile-admin-docs.git
synced 2025-12-26 02:32:50 +00:00
40 lines
1.6 KiB
YAML
40 lines
1.6 KiB
YAML
services:
|
|
|
|
notification-server:
|
|
image: ${NOTIFICATION_SERVER_IMAGE:-seafileltd/notification-server:13.0-latest}
|
|
container_name: notification-server
|
|
restart: always
|
|
volumes:
|
|
- ${SEAFILE_VOLUME:-/opt/seafile-data}/seafile/logs:/shared/seafile/logs
|
|
# ports:
|
|
# - "8083:8083"
|
|
environment:
|
|
- SEAFILE_MYSQL_DB_HOST=${SEAFILE_MYSQL_DB_HOST:-db}
|
|
- SEAFILE_MYSQL_DB_PORT=${SEAFILE_MYSQL_DB_PORT:-3306}
|
|
- SEAFILE_MYSQL_DB_USER=${SEAFILE_MYSQL_DB_USER:-seafile}
|
|
- SEAFILE_MYSQL_DB_PASSWORD=${SEAFILE_MYSQL_DB_PASSWORD:?Variable is not set or empty}
|
|
- SEAFILE_MYSQL_DB_CCNET_DB_NAME=${SEAFILE_MYSQL_DB_CCNET_DB_NAME:-ccnet_db}
|
|
- SEAFILE_MYSQL_DB_SEAFILE_DB_NAME=${SEAFILE_MYSQL_DB_SEAFILE_DB_NAME:-seafile_db}
|
|
- JWT_PRIVATE_KEY=${JWT_PRIVATE_KEY:?Variable is not set or empty}
|
|
- SEAFILE_LOG_TO_STDOUT=${SEAFILE_LOG_TO_STDOUT:-false}
|
|
- NOTIFICATION_SERVER_LOG_LEVEL=${NOTIFICATION_SERVER_LOG_LEVEL:-info}
|
|
labels:
|
|
caddy: ${SEAFILE_SERVER_PROTOCOL:-http}://${SEAFILE_SERVER_HOSTNAME:?Variable is not set or empty}
|
|
caddy.@ws.0_header: "Connection *Upgrade*"
|
|
caddy.@ws.1_header: "Upgrade websocket"
|
|
caddy.0_reverse_proxy: "@ws {{upstreams 8083}}"
|
|
caddy.1_handle_path: "/notification*"
|
|
caddy.1_handle_path.0_rewrite: "* {uri}"
|
|
caddy.1_handle_path.1_reverse_proxy: "{{upstreams 8083}}"
|
|
depends_on:
|
|
db:
|
|
condition: service_healthy
|
|
seafile:
|
|
condition: service_healthy
|
|
networks:
|
|
- seafile-net
|
|
|
|
networks:
|
|
seafile-net:
|
|
name: seafile-net
|