-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
62 lines (52 loc) · 1.3 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
version: "3.4"
services:
web:
build: .
command: python frontend/manage.py startserver
container_name: web
restart: always
ports:
- 5510:5510
depends_on:
- db
environment:
- RUNNING_DOCKER=1
networks:
- crowdeye-ai-engine_some-net
db:
container_name: postgres
image: postgres
environment:
- POSTGRES_DB=postgres
- POSTGRES_USER=postgres
- POSTGRES_PASSWORD=postgres
networks:
- crowdeye-ai-engine_some-net
influxdb:
image: influxdb
container_name: influxdb
restart: always
ports:
- 8086:8086
- "25826:25826/udp"
volumes:
- ./influxdata:/var/lib/influxdb
- ./config:/etc/influxdb/
environment:
- INFLUXDB_DB=db
- INFLUXDB_ADMIN_USER=admin
- INFLUXDB_ADMIN_PASSWORD=hello
grafana:
image: grafana/grafana
container_name: grafana
restart: always
user: "1000"
ports:
- 3000:3000
volumes:
- ./gfdata:/var/lib/grafana
depends_on:
- influxdb
networks:
crowdeye-ai-engine_some-net:
external: true