appstore-1panel/apps/roundcube/1.6.6-apache/docker-compose.yml
renovate[bot] 41fe830166
chore(deps): update roundcube/roundcubemail docker tag to v1.6.6 (#829)
* chore(deps): update roundcube/roundcubemail docker tag to v1.6.6

* Update app version [skip ci]

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: github-action update-app-version <githubaction@githubaction.com>
2024-01-29 15:01:09 +08:00

29 lines
855 B
YAML

version: '3'
services:
roundcube:
image: roundcube/roundcubemail:1.6.6-apache
container_name: ${CONTAINER_NAME}
restart: always
environment:
ROUNDCUBE_DB_TYPE: mysql
ROUNDCUBE_DB_HOST: ${PANEL_DB_HOST}
ROUNDCUBE_DB_USER: ${PANEL_DB_USER}
ROUNDCUBE_DB_PASSWORD: ${PANEL_DB_USER_PASSWORD}
ROUNDCUBE_DB_NAME: ${PANEL_DB_NAME}
ROUNDCUBEMAIL_DEFAULT_HOST: ${IMAP_SERVER}
ROUNDCUBEMAIL_DEFAULT_PORT: ${IMAP_SERVER_PORT}
ROUNDCUBEMAIL_SMTP_SERVER: ${SMTP_SERVER}
ROUNDCUBEMAIL_SMTP_PORT: ${SMTP_SERVER_PORT}
ROUNDCUBEMAIL_UPLOAD_MAX_FILESIZE: 5M
ports:
- ${PANEL_APP_PORT_HTTP}:80
volumes:
- ./logs:/var/log/apache2
- ./data:/var/www/html
networks:
- 1panel-network
labels:
createdBy: "Apps"
networks:
1panel-network:
external: true