-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
52 lines (46 loc) · 926 Bytes
/
docker-compose.yml
File metadata and controls
52 lines (46 loc) · 926 Bytes
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
version: '3.8'
services:
seapixganapi:
build: ./SeapixGanApi
container_name: seapixganapi
ports:
- "8000:8000"
networks:
- gan_network
deepseesrapi:
build: ./DeepSESRApi
container_name: deepseesrapi
ports:
- "8002:8002"
networks:
- gan_network
ldsnetapi:
build: ./LDSNetApi
container_name: ldsnetapi
ports:
- "8003:8003"
environment:
- RUNNING_IN_DOCKER=true
networks:
- gan_network
funieganapi:
build: ./FUnIEGanApi
container_name: funieganapi
ports:
- "8001:8001"
networks:
- gan_network
marinevisionwebapp:
build: ./MarineVisionWebApp
container_name: marinevisionwebapp
ports:
- "5001:5001"
networks:
- gan_network
environment:
- FLASK_APP=app
- FLASK_RUN_HOST=0.0.0.0
- FLASK_RUN_PORT=5001
networks:
gan_network:
driver: bridge