mirror of
https://github.com/haiwen/seafile-admin-docs.git
synced 2025-12-31 18:02:48 +00:00
38 lines
1.5 KiB
YAML
38 lines
1.5 KiB
YAML
services:
|
|
|
|
notification-server:
|
|
image: ${NOTIFICATION_SERVER_IMAGE:-seafileltd/notification-server:12.0-latest}
|
|
container_name: notification-server
|
|
restart: always
|
|
volumes:
|
|
- ${NOTIFICATION_SERVER_VOLUME:-/opt/notification-data}:/shared
|
|
- ${NOTIFICATION_SERVER_VOLUME:-/opt/notification-data}/logs:/shared/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
|
|
networks:
|
|
- seafile-net
|
|
|
|
networks:
|
|
seafile-net:
|
|
name: seafile-net
|