mirror of
https://github.com/Dokploy/templates.git
synced 2026-06-19 06:05:26 +02:00
- Removed the external dokploy-network configuration from various services' docker-compose.yml files to streamline network management. - This change simplifies the setup and ensures consistency across blueprints.
14 lines
345 B
YAML
14 lines
345 B
YAML
services:
|
|
roundcubemail:
|
|
image: roundcube/roundcubemail:1.6.9-apache
|
|
volumes:
|
|
- ./www:/var/www/html
|
|
- ./db/sqlite:/var/roundcube/db
|
|
environment:
|
|
- ROUNDCUBEMAIL_DB_TYPE=sqlite
|
|
- ROUNDCUBEMAIL_SKIN=elastic
|
|
- ROUNDCUBEMAIL_DEFAULT_HOST=${DEFAULT_HOST}
|
|
- ROUNDCUBEMAIL_SMTP_SERVER=${SMTP_SERVER}
|
|
|
|
|