-
-
Notifications
You must be signed in to change notification settings - Fork 143
/
mautic.yml
59 lines (54 loc) · 1.6 KB
/
mautic.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
# DOMAIN=example.com docker stack deploy -c mautic.yml mautic
# Remove Site URL "index.php" part on https://mautic.localhost/s/config/edit
services:
nginx:
image: ethibox/nginx-proxy:latest
environment:
- SERVER_NAME={{ index .Service.Labels "com.docker.stack.namespace" }}_app
volumes:
- ${VOLUME_PATH}data:/var/www/html:cached
deploy:
labels:
- traefik.enable=true
- traefik.http.routers.mautic-${NUMBER:-1}.rule=Host(`${DOMAIN:-mautic.localhost}`)
- traefik.http.routers.mautic-${NUMBER:-1}.entrypoints=${SCHEME:-https}
- traefik.http.routers.mautic-${NUMBER:-1}.service=mautic-${NUMBER:-1}
- traefik.http.routers.mautic-${NUMBER:-1}.tls.certresolver=letsencrypt
- traefik.http.services.mautic-${NUMBER:-1}.loadbalancer.server.port=80
networks:
- internal
- traefik
app:
image: ${IMAGE:-mautic/mautic}:${VERSION:-v4-fpm}
volumes:
- ${VOLUME_PATH}data:/var/www/html:cached
environment:
- MAUTIC_DB_HOST=mariadb
- MAUTIC_DB_NAME=mautic
- MAUTIC_DB_USER=mautic
- MAUTIC_DB_PASSWORD=myp@ssw0rd
- PHP_MEMORY_LIMIT=2048M
networks:
- traefik
- internal
mariadb:
image: mariadb:10.5.9
volumes:
- ${VOLUME_PATH}mariadb:/var/lib/mysql
environment:
- MYSQL_ROOT_PASSWORD=myp@ssw0rd
- MYSQL_DATABASE=mautic
- MYSQL_USER=mautic
- MYSQL_PASSWORD=myp@ssw0rd
networks:
- internal
volumes:
mariadb:
data:
networks:
internal:
driver: overlay
attachable: true
traefik:
external: true
name: traefik-net