-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathdocker-compose.yml
72 lines (66 loc) · 1.33 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: "2.1"
services:
shell:
image: "${IMAGE:-eeacms/plone}"
depends_on:
- memcached
- postfix
- zeo
- postgres
environment:
ZOPE_MODE: "${ZOPE_MODE:-zeo_client}"
TZ: "Europe/Copenhagen"
tty: true
stdin_open: true
command: cat
ports:
- 3080:8080
plone:
image: "${IMAGE:-eeacms/plone}"
ports:
- "8080:8080"
depends_on:
- memcached
- postfix
- zeo
- postgres
environment:
ZOPE_MODE: "${ZOPE_MODE:-zeo_client}"
TZ: "Europe/Copenhagen"
zeo:
image: "${IMAGE:-eeacms/plone}"
environment:
ZOPE_MODE: "zeo"
TZ: "Europe/Copenhagen"
volumes:
- zeo:/data
command:
- zeo
postgres:
image: eeacms/postgres:9.6-3.5
environment:
POSTGRES_DBNAME: "datafs zasync"
POSTGRES_DBUSER: "zope"
POSTGRES_DBPASS: "zope"
POSTGRES_USER: "postgres"
POSTGRES_PASSWORD: "postgres"
TZ: "Europe/Bucharest"
volumes:
- postgres:/var/lib/postgresql/data
memcached:
image: memcached:1.5.20
command:
- "-m"
- "1024"
environment:
TZ: "Europe/Copenhagen"
postfix:
image: eeacms/postfix:2.10-3.3
environment:
MTP_HOST: "example.com"
TZ: "Europe/Copenhagen"
volumes:
zeo:
driver: local
postgres:
driver: local