„roundcubemail/docker-compose.yml“ hinzufügen
This commit is contained in:
parent
f1f63cc761
commit
b2e93aa91b
1 changed files with 25 additions and 0 deletions
25
roundcubemail/docker-compose.yml
Normal file
25
roundcubemail/docker-compose.yml
Normal file
|
@ -0,0 +1,25 @@
|
||||||
|
version: "3"
|
||||||
|
services:
|
||||||
|
web:
|
||||||
|
image: roundcube/roundcubemail:latest
|
||||||
|
ports:
|
||||||
|
- 80:80
|
||||||
|
environment:
|
||||||
|
- ROUNDCUBEMAIL_PLUGINS=archive,zipdownload,managesieve,vcard_attachments
|
||||||
|
- ROUNDCUBEMAIL_DEFAULT_HOST=ssl://example.org
|
||||||
|
- ROUNDCUBEMAIL_DEFAULT_PORT=993
|
||||||
|
- ROUNDCUBEMAIL_SMTP_SERVER=ssl://example.org
|
||||||
|
- ROUNDCUBEMAIL_SMTP_PORT=465
|
||||||
|
- ROUNDCUBEMAIL_DB_TYPE=sqlite
|
||||||
|
- ROUNDCUBEMAIL_UPLOAD_MAX_FILESIZE=20M
|
||||||
|
- ROUNDCUBEMAIL_SKIN=elastic
|
||||||
|
volumes:
|
||||||
|
- data:/var/www/html
|
||||||
|
- config:/var/roundcube/config
|
||||||
|
- db:/var/roundcube/db
|
||||||
|
restart: "unless-stopped"
|
||||||
|
|
||||||
|
volumes:
|
||||||
|
data:
|
||||||
|
config:
|
||||||
|
db:
|
Loading…
Reference in a new issue