Files
Ryan Bonnell f886831598 Remove Docker compose top-level version property
A warning message is displayed that the version element is obsolete and should be removed.
2025-03-18 20:08:03 -07:00

24 lines
719 B
YAML

services:
kumod:
container_name: kumod
hostname: kumod
# use the latest build from `main`
image: ghcr.io/kumocorp/kumomta-dev:latest
# alternatively, use the latest stable release
#image: ghcr.io/kumocorp/kumomta:latest
volumes:
- ./policy:/opt/kumomta/etc/policy
restart: unless-stopped
ports:
- 25:2525
depends_on:
- tsa
tsa:
container_name: kumo-tsa
hostname: tsa # The kumod policy scripts rely on this name
image: ghcr.io/kumocorp/kumomta-dev:latest
command: runuser -u kumod -- /opt/kumomta/sbin/tsa-daemon --policy /opt/kumomta/etc/policy/tsa_init.lua
volumes:
- ./policy:/opt/kumomta/etc/policy
restart: unless-stopped