-
Notifications
You must be signed in to change notification settings - Fork 0
/
compose.yml
66 lines (64 loc) · 1.27 KB
/
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
services:
fe:
container_name: fe
image: node:18
networks:
- sentinel
build:
context: ./FE
dockerfile: fe.dockerfile
expose:
- 3000
ports:
- 3000:3000
depends_on:
- flask_mqtt
flask_mqtt:
container_name: flask_mqtt
image: flask:1.0.0
networks:
- sentinel
build:
context: ./BE
dockerfile: flask.dockerfile
expose:
- 4000
- 1883
ports:
- 4000:4000
- 1883:1883
environment:
- DATABASE_URL=postgresql://postgres:postgres@db:5432/postgres
- REDIS_URL=redis://redis:redis@redis:6379/redis
depends_on:
- db
db:
container_name: db
image: postgres:13
networks:
- sentinel
environment:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
POSTGRES_DB:
ports:
- 5432:5432
volumes:
- pgdata:/var/lib/postgresql/data
redis:
container_name: redis
image: redis:latest
restart: always
networks:
- sentinel
ports:
- 6379:6379
environment:
- REDIS_PASSWORD=my-password
- REDIS_PORT=6379
- REDIS_DATABASES=16
networks:
sentinel:
driver: bridge
volumes:
pgdata: {}