Skip to content
Snippets Groups Projects
Commit dc95377c authored by Tomáš Marek's avatar Tomáš Marek
Browse files

README about docker

parent b107f028
No related branches found
No related tags found
2 merge requests!61Milestone 2,!59README about docker
Pipeline #
......@@ -33,16 +33,20 @@ the car.
## Project structure
Project contains following modules as microservices:
Project contains following modules as microservices.
### common_library
This README contains commands to run individual components as well as commands
to create Docker images. Each image can run on its own, or you can run the whole
app using Docker Compose in project root folder:
`mvn -pl common_library spring-boot:run`
`> docker-compose up`
## common library
Common classes used across the application.
### car
## car
`mvn -pl car spring-boot:run`
......@@ -54,23 +58,50 @@ with the same name as the given component of the car that is not used by the car
WARNING: when putting components or drivers, services component and driver need to run.
### component
##### Run component using Docker:
Create the image:
`> docker build --no-cache -t pa165-formula-one-team-car`
Run the image:
`> docker run -p 8082:8082 pa165-formula-one-team-car`
## component
`mvn -pl component spring-boot:run`
Management of components.
Runs on port 8084.
#### Run component using Docker:
Create the image:
`> docker build --no-cache -t pa165-formula-one-team-component`
Run the image:
`> docker run -p 8084:8084 pa165-formula-one-team-component`
### driver
## driver
`mvn -pl driver spring-boot:run`
Management of drivers.
Runs on port 8083.
#### Run component using Docker:
Create the image:
### race
`> docker build --no-cache -t pa165-formula-one-team-driver`
Run the image:
`> docker run -p 8082:8082 pa165-formula-one-team-driver`
## race
`mvn -pl race spring-boot:run`
......@@ -85,6 +116,15 @@ Corresponding services need to run when also assigning drivers or cars in other
Runs on port 8081.
#### Run component using Docker:
Create the image:
`> docker build --no-cache -t pa165-formula-one-team-race`
Run the image:
`> docker run -p 8081:8081 pa165-formula-one-team-race`
## Diagrams
### Use case
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment