appstore-1panel/apps/roundcube/1.6.7-apache/docker-compose.yml
renovate[bot] 9bb1114831
chore(deps): update roundcube/roundcubemail docker tag to v1.6.7 (#1446)
* chore(deps): update roundcube/roundcubemail docker tag to v1.6.7

* 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-05-20 11:11:18 +08:00

28 lines
842 B
YAML

services:
roundcube:
image: roundcube/roundcubemail:1.6.7-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