appstore-1panel/apps/focalboard/7.11.2/docker-compose.yml

24 lines
562 B
YAML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

version: '3'
services:
focalboard:
container_name: ${CONTAINER_NAME}
restart: always
networks:
- 1panel-network
ports:
- "${PANEL_APP_PORT_HTTP}:8000"
volumes:
- "./data/config.json:/opt/focalboard/config.json" #sqlite
#- "./data/postgres-config.json:/opt/focalboard/config.json" #postgres需要修改对应数据库信息
- fbdata:/opt/focalboard/data
image: mattermost/focalboard:7.11.2
labels:
createdBy: "Apps"
volumes:
fbdata:
networks:
1panel-network:
external: true