-
-
Notifications
You must be signed in to change notification settings - Fork 291
/
Copy pathdocker-compose.yml
36 lines (34 loc) · 1.52 KB
/
docker-compose.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
services:
roundcube:
image: roundcube/roundcubemail:latest
container_name: roundcube
restart: unless-stopped
expose:
- 80/tcp
volumes:
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/roundcube/database:/var/roundcube/db
#- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/roundcube/config:/var/roundcube/config
#- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/roundcube/enigma:/var/roundcube/enigma
environment:
- ROUNDCUBEMAIL_DEFAULT_HOST=ssl://imap.web.de
- ROUNDCUBEMAIL_DEFAULT_PORT=993
- ROUNDCUBEMAIL_SMTP_SERVER=tls://smtp.web.de
- ROUNDCUBEMAIL_SMTP_PORT=587
- ROUNDCUBEMAIL_DB_TYPE=sqlite
- ROUNDCUBEMAIL_UPLOAD_MAX_FILESIZE=50M
- ROUNDCUBEMAIL_ASPELL_DICTS=de,en
# Custom plugins; see https://packagist.org/?type=roundcube-plugin
- ROUNDCUBEMAIL_COMPOSER_PLUGINS=johndoh/contextmenu,weird-birds/thunderbird_labels,jfcherng-roundcube/show-folder-size,germancoding/tls_icon,texxasrulez/advanced_search,johndoh/swipe
- ROUNDCUBEMAIL_PLUGINS=contextmenu,thunderbird_labels,show_folder_size,tls_icon,advanced_search,swipe
#networks:
# - proxy
#labels:
# - traefik.enable=true
# - traefik.docker.network=proxy
# - traefik.http.routers.roundcube.rule=Host(`roundcube.example.com`)
# - traefik.http.services.roundcube.loadbalancer.server.port=80
# # Optional part for traefik middlewares
# - traefik.http.routers.roundcube.middlewares=local-ipwhitelist@file
#networks:
# proxy:
# external: true