docker-compose-workshop/docker-compose.yaml
Stefan Liebl 79f4015906 roundcube
2020-07-09 15:41:32 +02:00

27 lines
647 B
YAML

version: '2'
services:
roundcube:
image: instrumentisto/roundcube:1.4.7-fpm
expose:
- "9000"
volumes:
- app-volume:/app
- ./db:/var/db
- ./roundcube.config.php:/app/config/config.inc.php:ro
- ./plugins/identity_smtp:/app/plugins/identity_smtp
- ./plugins/carddav:/app/plugins/carddav
- ./plugins/managesieve/config.inc.php:/app/plugins/managesieve/config.inc.php
nginx:
image: nginx:1.16.0-alpine
depends_on:
- roundcube
ports:
- "8081:80"
volumes:
- app-volume:/var/www
- ./fpm.nginx.conf:/etc/nginx/conf.d/default.conf:ro
volumes:
app-volume: