-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
72 lines (66 loc) · 3.37 KB
/
Copy pathdocker-compose.yml
File metadata and controls
72 lines (66 loc) · 3.37 KB
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
version: "3.8"
services:
denim-downloading:
container_name: "denim-downloading"
#build:
# context: ../downloading # Used for building locally the image. It requires to have the cloned the corresponding repository and to adapt the path accordingly.
# dockerfile: Dockerfile
image: denimraindrop/denim-downloading:1.1.1 # Used for downloading the precreated image from the official repository on Dockerhub.
ports:
- "8081:3000"
networks:
- denim-network # Connection to the dedicated network
denim-reverse-engineering:
container_name: "denim-reverse-engineering"
#build:
# context: ../reverse-engineering # Used for building locally the image. It requires to have the cloned the corresponding repository and to adapt the path accordingly.
# dockerfile: Dockerfile
image: denimraindrop/denim-reverse-engineering:2.0.0 # Used for downloading the precreated image from the official repository on Dockerhub.
ports:
- "8082:3000"
networks:
- denim-network # Connection to the dedicated network
denim-visualizing:
container_name: "denim-visualizing"
#build:
# context: ../visualizing # Used for building locally the image. It requires to have the cloned the corresponding repository and to adapt the path accordingly.
# dockerfile: Dockerfile
image: denimraindrop/denim-visualizing:2.0.0 # Used for downloading the precreated image from the official repository on Dockerhub.
ports:
- "8083:3000"
networks:
- denim-network # Connection to the dedicated network
denim-evolving:
container_name: "denim-evolving"
#build:
# context: ../evolving # Used for building locally the image. It requires to have the cloned the corresponding repository and to adapt the path accordingly.
# dockerfile: Dockerfile
image: denimraindrop/denim-evolving:2.0.1 # Used for downloading the precreated image from the official repository on Dockerhub.
ports:
- "8084:3000"
networks:
- denim-network # Connection to the dedicated network
denim-web:
container_name: "denim-web"
#build:
# dockerfile: Dockerfile
# context: ../web # Used for building locally the image. It requires to have the cloned the corresponding repository and to adapt the path accordingly.
# args: # Used for predefined environment variables. WARNING! If you perform this operation manually (out of docker-compose), it must be declared as the command-line argument `--build-arg` in the `docker build` command.
# VITE_DOWNLOADING_MICROSERVICE: "http://localhost:8081"
# VITE_REVERSE_ENGINEERING_MICROSERVICE: "http://localhost:8082"
# VITE_VISUALIZING_MICROSERVICE: "http://localhost:8083"
# VITE_EVOLVING_MICROSERVICE: "http://localhost:8084"
image: denimraindrop/denim-web:2.0.1 # Used for downloading the precreated image from the official repository on Dockerhub.
environment:
VITE_DOWNLOADING_MICROSERVICE: "http://localhost:8081"
VITE_REVERSE_ENGINEERING_MICROSERVICE: "http://localhost:8082"
VITE_VISUALIZING_MICROSERVICE: "http://localhost:8083"
VITE_EVOLVING_MICROSERVICE: "http://localhost:8084"
ports:
- "8080:8080"
networks:
- denim-network # Connection to the dedicated network
networks: # Dedicated network
denim-network:
name: denim-network
driver: bridge