-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathdocker-compose.yaml
More file actions
50 lines (45 loc) · 897 Bytes
/
docker-compose.yaml
File metadata and controls
50 lines (45 loc) · 897 Bytes
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
version: '3.3'
services:
colorcodes:
image: colorcodes
ports:
- "8080:3000"
environment:
- PORT=3000
expose:
- "8080"
redis:
image: redislabs/rejson
ports:
- "6379:6379"
command: redis-server --requirepass redispwd
expose:
- "6379"
minio:
image: minio/minio
ports:
- "9000:9000"
- "9001:9001"
volumes:
- minio_storage:/data
environment:
MINIO_ROOT_USER: incredible
MINIO_ROOT_PASSWORD: SuperSecretRootPwd
command: server --console-address ":9001" /data
db:
image: mysql:5.7
restart: always
environment:
MYSQL_DATABASE: 'db'
MYSQL_USER: 'user'
MYSQL_PASSWORD: 'pwd123'
MYSQL_ROOT_PASSWORD: 'pwd321'
ports:
- '3306:3306'
expose:
- '3306'
volumes:
- my-db:/var/lib/mysql
volumes:
my-db:
minio_storage: {}