Xbackbone from linuxserver/xbackbone with simple SMTP-Support via environment variables
1.8K
This is a straight copy from the linuxserver/xbackbone Docker image. I added ssmtp alongside environment variables to make use of an external smtp mailserver without much hassle.
If you need to build arm or any other Architecture, you can grab the files here and build it.
https://github.com/Mainfrezzer/docker-xbackbone
services:
xbackbone:
image: mainfrezzer/xbackbone:latest
container_name: xbackbone
environment:
- PUID=1000
- PGID=1000
- TZ=Etc/UTC
- SMTP_SERVER=SMTP-Server-Address
- SMTP_PORT=465 or 587
- SMTP_USERNAME=Login-Name
- SMTP_PASSWORD=Password
volumes:
- /path/to/xbackbone/config:/config
ports:
- 80:80
- 443:443
restart: unless-stopped
docker run -d \
--name=xbackbone \
-e PUID=1000 \
-e PGID=1000 \
-e TZ=Etc/UTC \
-e SMTP_SERVER=SMTP-Server-Address \
-e SMTP_PORT=465 or 587 \
-e SMTP_USERNAME=Login-Name \
-e SMTP_PASSWORD=Password \
-p 80:80 \
-p 443:443 \
-v /path/to/xbackbone/config:/config \
--restart unless-stopped \
mainfrezzer/xbackbone:latest
Content type
Image
Digest
sha256:b66bd316d…
Size
47.3 MB
Last updated
2 months ago
docker pull mainfrezzer/xbackbone