-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
44 lines (42 loc) · 1.07 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
version: '2'
services:
rabbitmq:
image: rabbitmq:3.6-management
ports:
- "5672:5672"
- "15672:15672"
volumes:
- /var/lib/rabbitmq
restart: unless-stopped
postgres:
image: postgres:13.1-alpine
ports:
- "5432:5432"
volumes:
- /var/lib/postgresql/data
restart: unless-stopped
oracle:
image: wnameless/oracle-xe-11g-r2
ports:
- "1521:1521"
volumes:
- /u01/app/oracle/oradata
- /u01/app/oracle/admin
- /u01/app/oracle/fast_recovery_area
restart: unless-stopped
mongo:
image: mongo:4.4.2
ports:
- "27017:27017"
volumes:
- /var/lib/mongodb
restart: unless-stopped
haproxy:
image: haproxy:1.7
ports:
- "1234:1234"
volumes:
- /c/projects/proxies/localhost/etc/haproxy:/usr/local/etc/haproxy/
environment:
- COMPUTERNAME
restart: unless-stopped