-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
72 lines (68 loc) · 1.46 KB
/
docker-compose.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
60
61
62
63
64
65
66
67
68
69
70
71
72
version: '3'
services:
feedback_db:
container_name: feedback_db
restart: always
image: postgres:9.6
volumes:
- feedback_data:/var/lib/postgresql/data
env_file:
- ./feedback.env
feedback_app:
container_name: feedback_app
restart: always
image: getfider/fider:stable
ports:
- "9999:3000"
env_file:
- ./feedback.env
depends_on:
- feedback_db
analytics_db:
container_name: analytics_db
image: mariadb
command: --max-allowed-packet=64MB
restart: always
volumes:
- analytics_db:/var/lib/mysql
env_file:
- ./analytics.env
analytics_app:
container_name: analytics_app
image: matomo:fpm-alpine
restart: always
links:
- analytics_db
volumes:
# - ./config:/var/www/html/config:rw
# - ./logs:/var/www/html/logs
- analytics_matomo:/var/www/html
env_file:
- ./analytics.env
analytics_web:
container_name: analytics_web
image: nginx:alpine
restart: always
volumes:
- analytics_matomo:/var/www/html:ro
- ./matomo.conf:/etc/nginx/conf.d/default.conf:ro
env_file:
- ./blog.env
ports:
- 8080:80
blog_web:
container_name: blog_web
image: ghost:3-alpine
restart: always
ports:
- 8090:2368
env_file:
- ./blog.env
blog_db:
container_name: blog_db
image: mysql:5.7
restart: always
volumes:
analytics_db:
analytics_matomo:
feedback_data: