-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
executable file
·71 lines (64 loc) · 1.54 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
version: '3.3'
services:
mongo:
image: chadgrant/mongo_sample:3.4
build:
context: mongo/sample
restart: unless-stopped
ports:
- 27018:27018
- 27017:27017
environment:
MONGO_INITDB_ROOT_USERNAME: docker
MONGO_INITDB_ROOT_PASSWORD: password
MONGO_INITDB_DATABASE: chadgrant
couchbase:
image: chadgrant/couchbase_sample:enterprise-6.0.0
build:
context: couch/sample
restart: unless-stopped
ports:
- 8091-8094:8091-8094
- 11210-11211:11210-11211
environment:
CB_HOST: couchbase
CB_USERNAME: docker
CB_PASSWORD: password
dynamo:
image: chadgrant/dynamo_sample:1.0
build:
context: dynamo/sample
restart: unless-stopped
ports:
- 8000:8000
mysql:
image: chadgrant/mysql_sample:8.0.18
build:
context: mysql/sample
restart: unless-stopped
ports:
- 3306:3306
environment:
MYSQL_ROOT_PASSWORD: password
MYSQL_DATABASE: sms
postgres:
image: chadgrant/postgres_sample:12.1
build:
context: postgres/sample
restart: unless-stopped
ports:
- 5432:5432
environment:
POSTGRES_USER: docker
POSTGRES_PASSWORD: password
POSTGRES_DB: sms
mssql:
image: chadgrant/mssql_sample:2019-GA-ubuntu-16.04
build:
context: mssql/sample
restart: unless-stopped
ports:
- 1433:1433
environment:
ACCEPT_EULA: Y
MSSQL_SA_PASSWORD: !StrongPassw0rd