-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
83 lines (77 loc) · 1.54 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
73
74
75
76
77
78
79
80
81
82
83
version: "2.2"
services:
n8n:
container_name: geoffrey-n8n
build:
context: n8n
image: geoffrey/n8n
restart: always
env_file: setup.env
volumes:
- n8n-volume:/home/node/.n8n
restart: always
ports:
- "5678:5678"
logging:
driver: "json-file"
options:
max-size: "200k"
max-file: "10"
database:
container_name: geoffrey-db
image: mariadb
env_file: setup.env
volumes:
- mariadb-volume:/var/lib/mysql
- ./mariadb-setup:/docker-entrypoint-initdb.d
restart: always
ports:
- "3306:3306"
logging:
driver: "json-file"
options:
max-size: "200k"
max-file: "10"
cache:
container_name: geoffrey-cache
image: redis:6
logging:
driver: "json-file"
options:
max-size: "200k"
max-file: "10"
directus:
container_name: geoffrey-directus
build:
context: directus
image: geoffrey/directus
restart: always
ports:
- 8055:8055
depends_on:
- cache
- database
env_file: setup.env
metabase:
container_name: geoffrey-metabase
build:
context: metabase
image: geoffrey/metabase
restart: always
ports:
- 3000:3000
depends_on:
- database
env_file: setup.env
landing:
container_name: geoffrey-landing
build:
context: landing
image: geoffrey/landing
restart: always
ports:
- 80:80
env_file: setup.env
volumes:
n8n-volume:
mariadb-volume: