1
0
mirror of https://github.com/pooneyy/1Panel-Appstore.git synced 2026-03-29 05:55:00 +08:00
1Panel-Appstore/apps/docmost/0.24.1/docker-compose.yml
pooneyy de103af962
🐛 fix(docmost): remove hardcoded app url from compose file
- remove APP_URL environment variable from docker-compose.yml
- rely on external environment variables for configuration
2026-01-21 04:37:22 +08:00

22 lines
612 B
YAML

services:
docmost:
image: docmost/docmost:0.24.1
environment:
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