更新配置

This commit is contained in:
ms
2026-01-20 15:52:28 +08:00
parent b166fc3ca1
commit 345a1a5b5d
12 changed files with 825 additions and 318 deletions
+23
View File
@@ -0,0 +1,23 @@
networks:
1panel-network:
external: true
services:
outline:
image: outlinewiki/outline:1.2.0
container_name: ${CONTAINER_NAME}
labels:
createdBy: "Apps"
restart: always
networks:
- 1panel-network
ports:
- ${PANEL_APP_PORT_HTTP}:3000
volumes:
- ${OUTLINE_ROOT_PATH}/data:/var/lib/outline/data
env_file:
- ${GLOBAL_ENV_FILE:-/etc/1panel/envs/global.env}
- ${APP_ENV_FILE:-/etc/1panel/envs/outline/outline.env}
- ${ENV_FILE:-/etc/1panel/envs/default.env}
environment:
- DATABASE_URL=postgres://${DB_USERNAME}:${DB_PASSWORD}@${DB_HOSTNAME}:${DB_PORT}/${DB_DATABASE_NAME}