Created
September 3, 2019 14:20
-
-
Save marlosirapuan/208b9d77bf35b2e72bc83cc7263b2a3c to your computer and use it in GitHub Desktop.
Mautic config
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: '3' | |
networks: | |
default: | |
driver: bridge | |
webproxy: | |
external: true | |
services: | |
db: | |
image: mariadb:10.2.14 | |
restart: unless-stopped | |
ports: | |
- 3342:3306 | |
volumes: | |
- /storage/mautic/mysql:/var/lib/mysql | |
environment: | |
MYSQL_ROOT_PASSWORD: "root" | |
MYSQL_DATABASE: <db_name> | |
MYSQL_USER: <db_user> | |
MYSQL_PASSWORD: <db_pass> | |
mautic: | |
networks: | |
- webproxy | |
- default | |
depends_on: | |
- db | |
image: mautic/mautic:latest | |
restart: unless-stopped | |
volumes: | |
- /storage/mautic/mautic_data:/var/www/html | |
environment: | |
MAUTIC_DB_HOST: db | |
MAUTIC_DB_NAME: <db_name> | |
MAUTIC_DB_USER: <db_user> | |
MAUTIC_DB_PASSWORD: <db_pass> | |
VIRTUAL_HOST: host.domain.com | |
LETSENCRYPT_HOST: host.domain.com | |
LETSENCRYPT_EMAIL: [email protected] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment