-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdocker-compose.yaml
More file actions
85 lines (62 loc) · 1.38 KB
/
docker-compose.yaml
File metadata and controls
85 lines (62 loc) · 1.38 KB
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
84
85
postgres:
build: ./docker-postgres
restart: always
ports:
- 32345:5432
volumes:
- ./volumes/postgres:/var/lib/postgresql/data
rabbitmq:
image: rabbitmq:3-alpine
restart: always
php:
build: ./emlo-edit-php
restart: always
#ports:
# - 8080:80
links:
- postgres
- rabbitmq
- uploadermongo
env_file:
- docker-compose.php.env
volumes:
- ./emlo-edit-php-helper/exporter/exports:/var/www/html/exports
- ./emlo-edit-php-helper/exporter/exporter_data:/var/www/exporter/exporter_data
- ./volumes/csv:/csv
- ./volumes/ssh:/root/.ssh
- ./volumes/uploader:/uploader
- ./volumes/tweaker:/tweaker
exporter:
build: ./emlo-edit-php-helper
restart: always
links:
- postgres
- rabbitmq
volumes:
- ./emlo-edit-php-helper/exporter/exports:/usr/src/app/exports
- ./emlo-edit-php-helper/exporter/exporter_data:/usr/src/app/exporter_data
- ./emlo-edit-php-helper/tweaker/resources:/usr/src/tweaker/resources
- ./volumes/tweaker:/tweaker_data
uploader:
build: ./docker-uploader
restart: always
links:
- postgres
- rabbitmq
- uploadermongo
volumes:
- ./volumes/uploader:/uploader
uploadermongo:
image: mongo
restart: always
nginx:
build: ./nginx
restart: always
links:
- php
volumes:
- ../resources:/static
ports:
- 80:80
- 443:443
# - 3000:3000