Take full ownership of your marketing strategy with a highly extendable, open-source automation platform designed for privacy and flexibility. By running your own marketing automation environment, you eliminate reliance on third-party SaaS providers and maintain absolute control over your database and user data. The platform is built to adapt to your specific needs, allowing you to create custom integrations and modify both the frontend and backend without facing restrictive vendor lock-in.
Key benefits include:
services:
db:
image: mysql:8.0
command: --default-authentication-plugin=mysql_native_password
restart: always
environment:
MYSQL_ROOT_PASSWORD: ${MYSQL_ROOT_PASSWORD}
MYSQL_DATABASE: ${MAUTIC_DB_NAME}
MYSQL_USER: ${MAUTIC_DB_USER}
MYSQL_PASSWORD: ${MAUTIC_DB_PASSWORD}
volumes:
- ./db_data:/var/lib/mysql
mautic:
image: shinsenter/mautic:latest
restart: always
depends_on:
- db
ports:
- 8080:80
environment:
MAUTIC_DB_HOST: db
MAUTIC_DB_USER: ${MAUTIC_DB_USER}
MAUTIC_DB_PASSWORD: ${MAUTIC_DB_PASSWORD}
MAUTIC_DB_NAME: ${MAUTIC_DB_NAME}
MAUTIC_RUN_CRON_JOBS: "true"
MAUTIC_TRUSTED_PROXIES: "0.0.0.0/0"
volumes:
- ./mautic_data:/var/www/htmlMYSQL_ROOT_PASSWORD=your_secure_root_password
MAUTIC_DB_NAME=mautic
MAUTIC_DB_USER=mautic
MAUTIC_DB_PASSWORD=your_secure_db_passwordAuto-fetched about 23 hours ago
Auto-fetched about 23 hours ago