-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcompose.yaml
More file actions
48 lines (40 loc) · 1.09 KB
/
compose.yaml
File metadata and controls
48 lines (40 loc) · 1.09 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
name: bichon
x-daemonless:
title: "Bichon"
icon: ":material-email:"
category: "Utilities"
description: "A lightweight, high-performance Rust email archiver with WebUI."
upstream_url: "https://github.com/rustmailer/bichon"
web_url: "https://github.com/rustmailer/bichon"
user: "bsd"
mlock: false
appjail: true
healthcheck:
port: 15630
path: "/"
docs:
env:
PUID: "User ID for the application process"
PGID: "Group ID for the application process"
TZ: "Timezone for the container"
BICHON_HTTP_PORT: "HTTP server port (default: 15630)"
BICHON_ENCRYPT_PASSWORD: "Encryption password for core database"
volumes:
/data: "Core data and search indices"
ports:
"15630": "Web UI / API"
services:
bichon:
image: ghcr.io/daemonless/bichon:latest
container_name: bichon
restart: unless-stopped
environment:
- PUID=1000
- PGID=1000
- TZ=UTC
- BICHON_ENCRYPT_PASSWORD=changeme
volumes:
- /path/to/containers/bichon:/data
ports:
- published: 15630
target: 15630