You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
85 lines
1.5 KiB
YAML
85 lines
1.5 KiB
YAML
# This file is auto-generated by the Mailu configuration wizard.
|
|
# Please read the documentation before attempting any change.
|
|
# Generated for compose flavor
|
|
|
|
version: '3.6'
|
|
|
|
services:
|
|
|
|
# External dependencies
|
|
redis:
|
|
image: redis:alpine
|
|
volumes:
|
|
- "/mailu/redis:/data"
|
|
|
|
# Core services
|
|
front:
|
|
image: mailu/nginx:master
|
|
env_file: mailu.env
|
|
ports:
|
|
- "127.0.0.1:80:80"
|
|
- "::1:80:80"
|
|
- "127.0.0.1:443:443"
|
|
- "::1:443:443"
|
|
- "127.0.0.1:25:25"
|
|
- "::1:25:25"
|
|
- "127.0.0.1:465:465"
|
|
- "::1:465:465"
|
|
- "127.0.0.1:587:587"
|
|
- "::1:587:587"
|
|
- "127.0.0.1:110:110"
|
|
- "::1:110:110"
|
|
- "127.0.0.1:995:995"
|
|
- "::1:995:995"
|
|
- "127.0.0.1:143:143"
|
|
- "::1:143:143"
|
|
- "127.0.0.1:993:993"
|
|
- "::1:993:993"
|
|
volumes:
|
|
- "/mailu/certs:/certs"
|
|
|
|
|
|
admin:
|
|
image: mailu/admin:master
|
|
env_file: mailu.env
|
|
volumes:
|
|
- "/mailu/data:/data"
|
|
- "/mailu/dkim:/dkim"
|
|
depends_on:
|
|
- redis
|
|
|
|
imap:
|
|
image: mailu/dovecot:master
|
|
env_file: mailu.env
|
|
volumes:
|
|
- "/mailu/mail:/mail"
|
|
- "/mailu/overrides:/overrides"
|
|
depends_on:
|
|
- front
|
|
|
|
smtp:
|
|
image: mailu/postfix:master
|
|
env_file: mailu.env
|
|
volumes:
|
|
- "/mailu/overrides:/overrides"
|
|
depends_on:
|
|
- front
|
|
|
|
# Optional services
|
|
|
|
|
|
|
|
|
|
# Webmail
|
|
webmail:
|
|
image: mailu/roundcube:master
|
|
env_file: mailu.env
|
|
volumes:
|
|
- "/mailu/webmail:/data"
|
|
depends_on:
|
|
- imap
|
|
- resolver
|
|
dns:
|
|
- 192.168.0.254
|
|
|