mirror of
https://github.com/Dokploy/templates
synced 2025-06-26 18:16:07 +00:00
feat: add focalboard
This commit is contained in:
29
blueprints/focalboard/docker-compose.yml
Normal file
29
blueprints/focalboard/docker-compose.yml
Normal file
@@ -0,0 +1,29 @@
|
||||
version: '3'
|
||||
|
||||
services:
|
||||
focalboard:
|
||||
image: mattermost/focalboard:7.11.4
|
||||
container_name: focalboard
|
||||
restart: unless-stopped
|
||||
volumes:
|
||||
- focalboardData:/opt/focalboard/data
|
||||
environment:
|
||||
- VIRTUAL_HOST
|
||||
- VIRTUAL_PORT
|
||||
- DB_TYPE
|
||||
- DB_CONFIG=postgres://${POSTGRES_USER}:${POSTGRES_password}@postgres:5432/${postgres_db}?sslmode=disable
|
||||
|
||||
postgres:
|
||||
image: postgres:17
|
||||
environment:
|
||||
- POSTGRES_USER
|
||||
- POSTGRES_PASSWORD
|
||||
- POSTGRES_DB
|
||||
volumes:
|
||||
- ./postgres_data:/var/lib/postgresql/data
|
||||
|
||||
volumes:
|
||||
focalboardData:
|
||||
driver: local
|
||||
focalboardPostgre:
|
||||
driver: local
|
||||
Reference in New Issue
Block a user