-
|
Hi. I like the idea of Chadburn. I've got it running through a docker socker proxy but I'm struggling to configure it for mail. I have a configuration file at Unfortunately, on startup I get this in the log:
Running Anybody got any clues? ---
version: "3.5"
services:
chadburn:
image: premoweb/chadburn:latest
container_name: chadburn
depends_on:
- docker-socket-proxy
command: daemon --config=/etc/chadburn.conf
environment:
- DOCKER_HOST=tcp://chadburn-docker-socket-proxy:2375
volumes:
- /home/chadburn/chadburn.conf:/etc/chadburn.conf
labels:
- "diun.enable=true"
restart: unless-stopped
docker-socket-proxy:
image: tecnativa/docker-socket-proxy:latest
container_name: chadburn-docker-socket-proxy
privileged: true
volumes:
- /var/run/docker.sock:/var/run/docker.sock:ro
environment:
- CONTAINERS=1
- EXEC=1
- INFO=1
- POST=1
restart: unless-stopped
labels:
- "diun.enable=true" |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
|
Okay solved my own issue after looking a little more closely at the example config file. It's not TGIF. |
Beta Was this translation helpful? Give feedback.
Okay solved my own issue after looking a little more closely at the example config file.
It's not
option: value, it'soption = value.TGIF.