forked from rhinof/grabbit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
42 lines (41 loc) · 918 Bytes
/
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: '3'
services:
rabbitmq:
image: "rabbitmq:3-management"
hostname: "rabbit1"
environment:
RABBITMQ_ERLANG_COOKIE: "SWQOKODSQALRPCLNMEQG"
RABBITMQ_DEFAULT_USER: "rabbitmq"
RABBITMQ_DEFAULT_PASS: "rabbitmq"
RABBITMQ_DEFAULT_VHOST: "/"
ports:
- "15672:15672"
- "5672:5672"
labels:
NAME: "rabbitmq1"
pgdb:
image: postgres
environment:
POSTGRES_PASSWORD: rhinof
POSTGRES_USER: rhinof
ports:
- 5432:5432
mysqldb:
image: mysql
command: --default-authentication-plugin=mysql_native_password
restart: always
environment:
MYSQL_DATABASE: rhinof
MYSQL_ROOT_PASSWORD: rhinof
MYSQL_USER: rhinof
MYSQL_PASSWORD: rhinof
ports:
- 3306:3306
volumes:
- datavolume:/var/lib/mysql
adminer:
image: adminer
ports:
- 8080:8080
volumes:
datavolume: