-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfile_1
More file actions
76 lines (69 loc) · 1.69 KB
/
file_1
File metadata and controls
76 lines (69 loc) · 1.69 KB
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
72
73
74
75
76
version: '3'
services:
sqlserver2019:
image: mcr.microsoft.com/mssql/server:2019-CTP3.1-ubuntu
environment:
ACCEPT_EULA: Y
SA_PASSWORD: SqlServer2019!
ports:
- "41434:1433"
volumes:
- /home/renatogroffe/Desenvolvimento/Docker/Volumes/SQLSat/SQLServer2019-CTP3.1:/var/opt/mssql
networks:
- sqlsat
postgres:
image: postgres
environment:
POSTGRES_PASSWORD: "Postgres2019!"
ports:
- "15432:5432"
volumes:
- /home/renatogroffe/Desenvolvimento/Docker/Volumes/SQLSat/PostgreSQL:/var/lib/postgresql/data
networks:
- sqlsat
pgadmin:
image: dpage/pgadmin4
environment:
PGADMIN_DEFAULT_EMAIL: "renatogroff@yahoo.com.br"
PGADMIN_DEFAULT_PASSWORD: "PgAdmin2019!"
ports:
- "15433:80"
depends_on:
- postgres
networks:
- sqlsat
redis:
image: redis:alpine
command: redis-server --requirepass Redis2019!
ports:
- "16379:6379"
networks:
- sqlsat
mongo-express:
image: mongo-express
ports:
- 19081:8081
environment:
ME_CONFIG_BASICAUTH_USERNAME: renatogroffe
ME_CONFIG_BASICAUTH_PASSWORD: MongoExpress2019!
ME_CONFIG_MONGODB_PORT: 27017
ME_CONFIG_MONGODB_ADMINUSERNAME: root
ME_CONFIG_MONGODB_ADMINPASSWORD: MongoDB2019!
links:
- mongo
networks:
- sqlsat
mongo:
image: mongo
environment:
MONGO_INITDB_ROOT_USERNAME: root
MONGO_INITDB_ROOT_PASSWORD: MongoDB2019!
ports:
- "27017:27017"
volumes:
- /home/renatogroffe/Desenvolvimento/Docker/Volumes/SQLSat/MongoDB:/data/db
networks:
- sqlsat
networks:
sqlsat:
driver: bridge