24 lines
694 B
YAML
24 lines
694 B
YAML
services:
|
|
#https://github.com/rustmailer/bichon
|
|
# A lightweight, high-performance Rust email archiver with WebUI
|
|
# https://github.com/rustmailer/bichon/wiki
|
|
bichon:
|
|
image: rustmailer/bichon:latest
|
|
container_name: bichon
|
|
restart: unless-stopped
|
|
ports:
|
|
- "15630:15630"
|
|
volumes:
|
|
- /srv/docker/office/bichon:/data
|
|
user: "1001:1001"
|
|
environment:
|
|
BICHON_ROOT_DIR: /data
|
|
BICHON_LOG_LEVEL: info
|
|
labels:
|
|
- homepage.group=Office
|
|
- homepage.name=Bichon
|
|
- homepage.icon=bichon.png
|
|
- homepage.href=${BICHON_URL}
|
|
- homepage.description=Email archiver
|
|
- dockhand.url=${BICHON_URL}
|
|
- rackpeek.tags=office |