23 lines
616 B
Plaintext
23 lines
616 B
Plaintext
|
version: '3'
|
||
|
|
||
|
services:
|
||
|
roundcube:
|
||
|
image: roundcube/roundcubemail:latest
|
||
|
container_name: roundcubemail
|
||
|
restart: unless-stopped
|
||
|
hostname: roundcube.internal.simponic.xyz
|
||
|
volumes:
|
||
|
- ./www:/var/www/html
|
||
|
- ./db/sqlite:/var/roundcube/db
|
||
|
ports:
|
||
|
- 127.0.0.1:9002:80
|
||
|
dns:
|
||
|
- {{ johan_ip }}
|
||
|
environment:
|
||
|
- ROUNDCUBEMAIL_DB_TYPE=sqlite
|
||
|
- ROUNDCUBEMAIL_SKIN=elastic
|
||
|
- ROUNDCUBEMAIL_DEFAULT_HOST=ssl://mail.simponic.xyz
|
||
|
- ROUNDCUBEMAIL_DEFAULT_PORT=993
|
||
|
- ROUNDCUBEMAIL_SMTP_SERVER=tls://mail.simponic.xyz
|
||
|
- ROUNDCUBEMAIL_SMTP_PORT=587
|