mirror of
https://github.com/chatmail/relay.git
synced 2026-05-10 16:04:37 +00:00
Replace the old IMAGE_VERSION_FILE/RUNNING_VERSION_FILE mechanism with a single deploy fingerprint (image_version:sha256(chatmail.ini)) stored at /etc/chatmail/.deploy-fingerprint. On restart, if the fingerprint matches the last successful deploy, skip cmdeploy run entirely. The fingerprint lives on the container's writable layer. On fresh containers, setting CMDEPLOY_STAGES non-empty in env forces a deploy run regardless of fingerprint. Also narrow the /home volume mount to /home/vmail.
52 lines
1.8 KiB
YAML
52 lines
1.8 KiB
YAML
# Base compose file — do not edit. Put customizations (data paths, extra
|
|
# volumes, env overrides) in docker-compose.override.yaml instead.
|
|
# See docker/docker-compose.override.yaml.example for a starting point.
|
|
#
|
|
# Security note: this container uses network_mode:host (chatmail needs many
|
|
# ports: 25, 53, 80, 143, 443, 465, 587, 993, 3340, 8443) and cgroup:host
|
|
# (required for systemd). Together these give the container near-host-level
|
|
# access. This is acceptable for a dedicated mail server, but be aware that
|
|
# the container can bind any port and see all host network traffic.
|
|
services:
|
|
chatmail:
|
|
build:
|
|
context: ./
|
|
dockerfile: docker/chatmail_relay.dockerfile
|
|
args:
|
|
GIT_HASH: ${GIT_HASH:-unknown}
|
|
image: chatmail-relay:latest
|
|
restart: unless-stopped
|
|
container_name: chatmail
|
|
# Required for systemd — use only one of the following:
|
|
cgroup: host # compose v2 only
|
|
# privileged: true # compose v1 (not tested)
|
|
tty: true # required for logs
|
|
tmpfs: # required for systemd
|
|
- /tmp
|
|
- /run
|
|
- /run/lock
|
|
logging:
|
|
driver: json-file
|
|
options:
|
|
max-size: "10m"
|
|
max-file: "3"
|
|
environment:
|
|
MAIL_DOMAIN: $MAIL_DOMAIN
|
|
CMDEPLOY_STAGES: ${CMDEPLOY_STAGES:-}
|
|
CHATMAIL_NOSYSCTL: ${CHATMAIL_NOSYSCTL:-True}
|
|
CHATMAIL_NOPORTCHECK: ${CHATMAIL_NOPORTCHECK:-True}
|
|
CHATMAIL_NOACME: ${CHATMAIL_NOACME:-}
|
|
network_mode: "host"
|
|
volumes:
|
|
## system (required)
|
|
- /sys/fs/cgroup:/sys/fs/cgroup:rw
|
|
## data (defaults — override in docker-compose.override.yaml)
|
|
- chatmail-data:/home/vmail
|
|
- chatmail-dkimkeys:/etc/dkimkeys
|
|
- chatmail-acme:/var/lib/acme
|
|
|
|
volumes:
|
|
chatmail-data:
|
|
chatmail-dkimkeys:
|
|
chatmail-acme:
|