-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdocker-compose.yml
57 lines (55 loc) · 1.28 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
version: '3.2'
services:
bika_penelope:
image: httpd:2.4
hostname: bika_penelope
container_name: bika_penelope
ports:
- "80:80"
volumes:
- type: bind
source: ./httpd.conf
target: /usr/local/apache2/conf/httpd.conf
- type: bind
source: ./bika.penelope/
target: /usr/local/apache2/htdocs/
- type: bind
source: /qc
target: /qc
depends_on:
- "bika_webservice"
restart: always
bika_webservice:
image: quay.io/crs4/bika.webservice
hostname: bika_webservice
container_name: bika_webservice
env_file:
- bika.webservice.env
ports:
- "8086:8086"
- "8088:8088"
restart: always
rabbit:
image: rabbitmq:3-management
hostname: rabbit
container_name: rabbit
ports:
- "5672:5672"
- "15672:15672"
networks:
- hutch
restart: always
flower:
image: gmauro/flower
hostname: flower
container_name: flower
ports:
- "5555:5555"
networks:
- hutch
depends_on:
- "rabbit"
restart: always
command: ["flower", "--port=5555", "--broker=amqp://guest:guest@rabbit:5672//", "--broker_api=http://guest:guest@rabbit:15672/api/"]
networks:
hutch: