-
-
Notifications
You must be signed in to change notification settings - Fork 143
/
freescout.yml
57 lines (53 loc) · 1.73 KB
/
freescout.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
# DOMAIN=example.com docker stack deploy -c freescout.yml freescout
services:
web:
image: tiredofit/freescout:${VERSION:-php8.1-1.17.72}
volumes:
- ${VOLUME_PATH}data:/data
- ${VOLUME_PATH}logs:/www/logs
environment:
- VIRTUAL_HOST=${DOMAIN:-freescout.localhost}
- VIRTUAL_PORT=80
- DB_HOST=mariadb
- DB_NAME=freescout
- DB_USER=freescout
- DB_PASS=myp@ssw0rd
- SITE_URL=${SCHEME-https}://${DOMAIN:-freescout.localhost}
- ADMIN_EMAIL=${ADMIN_EMAIL:[email protected]}
- ADMIN_PASS=${ADMIN_PASSWORD:-myp@ssw0rd}
- ENABLE_SSL_PROXY=${ENABLE_SSL_PROXY:-true}
- DISPLAY_ERRORS=${DISPLAY_ERRORS:-false}
- TIMEZONE=Europe/Paris
deploy:
labels:
- traefik.enable=true
- traefik.http.routers.freescout-${NUMBER:-1}.rule=Host(`${DOMAIN:-freescout.localhost}`)
- traefik.http.routers.freescout-${NUMBER:-1}.entrypoints=${SCHEME:-https}
- traefik.http.routers.freescout-${NUMBER:-1}.service=freescout-${NUMBER:-1}
- traefik.http.routers.freescout-${NUMBER:-1}.tls.certresolver=letsencrypt
- traefik.http.services.freescout-${NUMBER:-1}.loadbalancer.server.port=80
networks:
- internal
- traefik
mariadb:
image: mariadb:10.5.9
volumes:
- ${VOLUME_PATH}mariadb:/var/lib/mysql:cached
environment:
- MYSQL_ROOT_PASSWORD=${MYSQL_ROOT_PASSWORD:-myp@ssw0rd}
- MYSQL_DATABASE=${MYSQL_DATABASE:-freescout}
- MYSQL_USER=${MYSQL_USER:-freescout}
- MYSQL_PASSWORD=${MYSQL_PASSWORD:-myp@ssw0rd}
networks:
- internal
volumes:
mariadb:
data:
logs:
networks:
internal:
driver: overlay
attachable: true
traefik:
external: true
name: traefik-net