mirror of
https://github.com/pooneyy/1Panel-Appstore.git
synced 2026-03-18 01:01:02 +08:00
- add new config.env file with detailed environment variables for app, storage, email, and telemetry settings - expand data.yml form fields with multi-language support, database, and redis service configurations - refactor docker-compose.yml to use 1panel network, environment variables, and config.env file - add init.sh script for generating APP_SECRET - update README files with detailed configuration instructions and feature descriptions - enhance data.yml metadata with multi-language descriptions and architecture support - update application logo
23 lines
649 B
YAML
23 lines
649 B
YAML
services:
|
|
docmost:
|
|
image: docmost/docmost:0.24.1
|
|
environment:
|
|
APP_URL: http://localhost:3000
|
|
APP_SECRET: ${APP_SECRET}
|
|
DATABASE_URL: postgres://${PANEL_DB_USER}:${PANEL_DB_USER_PASSWORD}@${PANEL_DB_HOST}:${PANEL_DB_PORT}/${PANEL_DB_NAME}?schema=public
|
|
REDIS_URL: redis://default:${PANEL_REDIS_ROOT_PASSWORD}@${PANEL_REDIS_HOST}:6379
|
|
env_file:
|
|
- config.env
|
|
ports:
|
|
- ${PANEL_APP_PORT_HTTP}:3000
|
|
volumes:
|
|
- ./data:/app/data/storage
|
|
container_name: ${CONTAINER_NAME}
|
|
networks:
|
|
- 1panel-network
|
|
labels:
|
|
createdBy: Apps
|
|
networks:
|
|
1panel-network:
|
|
external: true
|