-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
52 lines (47 loc) · 967 Bytes
/
Copy pathdocker-compose.yml
File metadata and controls
52 lines (47 loc) · 967 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: '1'
services:
django:
build:
context: ./bsc_server
dockerfile: Dockerfile
container_name: django_server
ports:
- "8000:8000"
networks:
- my_net
flask-glow:
build:
context: ./glow_demo
dockerfile: Dockerfile
container_name: glow_container
ports:
- "4321:5050"
networks:
- my_net
depends_on:
- django
flask-cyclegan:
build:
context: ./cyclegan_demo/FaceAging-by-cycleGAN
dockerfile: Dockerfile
container_name: cyclegan_container
ports:
- "4322:5050"
networks:
- my_net
depends_on:
- django
flask-estimateage:
build:
context: ./age_estimation/age-gender-estimation-master/age-gender-estimation-master
dockerfile: Dockerfile
container_name: estimate_age_container
ports:
- "5050"
networks:
- my_net
depends_on:
- django
networks:
my_net:
driver: bridge