-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
76 lines (68 loc) · 1.58 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
72
73
74
75
version: '2'
services:
mynodered:
build:
context: ./docker/nodered
dockerfile: Dockerfile
restart: always
ports:
- "127.0.0.1:7001:1880"
volumes:
- nodered_volume:/data
container_name: trantek-nodered
mymongo:
image: "mongo:4.4"
restart: always
ports:
- "127.0.0.1:7003:27017"
volumes:
- mongo_volume:/data/db
- mongo_volume:/data/configdb
container_name: trantek-mongodb
mypostgresql:
image: "postgis/postgis:12-master"
ports:
- "127.0.0.1:7004:5432"
restart: always
environment:
POSTGRES_USER: trantek
POSTGRES_PASSWORD: svv123svv
volumes:
- postgre_volume:/var/lib/postgresql/data
container_name: trantek-postgres
mynotebook:
build: docker/jupyter
restart: always
environment:
- PASSWORD=svv123svv
volumes:
- notebook_volume:/home/jovyan
ports:
- 127.0.0.1:7002:8888
container_name: trantek-jupyter
mypgadmin:
image: dpage/pgadmin4
restart: always
environment:
- PGADMIN_DEFAULT_PASSWORD=svv123svv
ports:
- 127.0.0.1:7006:80
volumes:
- pgadmin_volum:/var/lib/pgadmin
container_name: trantek-pgadmin
mymongoexpress:
image: mongo-express
restart: always
environment:
- ME_CONFIG_MONGODB_SERVER=trantek-mongodb
ports:
- 127.0.0.1:7005:8081
restart: always
container_name: trantek-mongoexpress
volumes:
nodered_volume:
notebook_volume:
mongo_volume:
pgadmin_volum:
postgre_volume: