Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- services:
- # Datenbank:
- db:
- image: mariadb:11.6.2
- container_name: mailpiler-db
- hostname: db
- restart: unless-stopped
- environment:
- - MYSQL_DATABASE=piler
- - MYSQL_USER=pileruser
- - MYSQL_PASSWORD=pilerpass
- - MYSQL_ROOT_PASSWORD=pilerroot
- command: --character-set-server=utf8mb4 --collation-server=utf8mb4_unicode_ci
- volumes:
- - /mnt/user/appdata/mailpiler/db:/var/lib/mysql
- - /mnt/user/appdata/mailpiler/piler.cnf:/etc/mysql/conf.d/piler.cnf:ro
- labels:
- net.unraid.docker.icon: 'https://web.archive.org/web/20240807065709if_/https://spintopventures.com/wp-content/uploads/2015/03/[email protected]'
- networks:
- mailpiler:
- ipv4_address: "172.16.90.2"
- # Search-Engine:
- manticore:
- image: manticoresearch/manticore:6.3.8
- container_name: mailpiler-manticore
- hostname: manticore
- restart: unless-stopped
- volumes:
- - /mnt/user/appdata/mailpiler/manticore.conf:/etc/manticoresearch/manticore.conf
- - /mnt/user/appdata/mailpiler/manticore:/var/lib/manticore
- labels:
- net.unraid.docker.icon: 'https://web.archive.org/web/20250424192816if_/https://avatars.githubusercontent.com/u/28798446?v=4'
- networks:
- mailpiler:
- ipv4_address: "172.16.90.3"
- # Mail-Piler:
- piler:
- image: sutoj/piler:1.4.7
- container_name: mailpiler
- init: true
- environment:
- - MANTICORE_HOSTNAME=manticore
- - MEMCACHED_HOSTNAME=memcached
- - MYSQL_HOSTNAME=db
- - MYSQL_DATABASE=piler
- - MYSQL_USER=pileruser
- - MYSQL_PASSWORD=pilerpass
- - MYSQL_ROOT_PASSWORD=pilerroot
- - PILER_HOSTNAME=DEINE_IP:9277
- - RT=1
- - TIMEZONE=Europe/Berlin
- ports:
- - "9276:25"
- - "9277:80"
- volumes:
- - /mnt/user/appdata/mailpiler/etc:/etc/piler
- - /mnt/user/appdata/mailpiler/store:/var/piler/store
- healthcheck:
- test: curl -s smtp://localhost/
- interval: "20s"
- timeout: "3s"
- start_period: "15s"
- retries: 3
- depends_on:
- - "db"
- - "memcached"
- - "manticore"
- labels:
- net.unraid.docker.icon: 'https://web.archive.org/web/20250602101707if_/https://s7.ezgif.com/tmp/ezgif-7bbfcaaef6da94.png'
- net.unraid.docker.webui: 'http://[IP]:[PORT:9277]/'
- com.centurylinklabs.watchtower.enable: 'true'
- networks:
- mailpiler:
- ipv4_address: "172.16.90.4"
- # Cache:
- memcached:
- image: memcached:alpine
- container_name: mailpiler-cache
- hostname: memcached
- command: -m 64
- restart: unless-stopped
- labels:
- net.unraid.docker.icon: 'https://web.archive.org/web/20250602101834if_/https://s7.ezgif.com/tmp/ezgif-7b4f84a634a864.png'
- networks:
- mailpiler:
- ipv4_address: "172.16.90.5"
- # Netzwerk:
- networks:
- mailpiler:
- name: mailpiler
- driver: bridge
- ipam:
- config:
- - subnet: 172.16.90.0/24
- gateway: 172.16.90.1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement