blossom-cloudron/docker-compose.yml
2024-11-04 16:09:32 +01:00

22 lines
397 B
YAML

version: "3.7"
volumes:
data: {}
services:
blossom:
image: ghcr.io/hzrd149/blossom-server:master
build: .
ports:
- 3000:3000
# enable debug logging
# environment:
# DEBUG: "*"
volumes:
# mount data volume
- data:/app/data
# mount config file
- ./config.yml:/app/config.yml
# mount custom www dir
- ./public:/app/public