Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
PA165 Formula One Team
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Diana Gulčíková
PA165 Formula One Team
Commits
dc95377c
There was an error fetching the commit references. Please try again later.
Commit
dc95377c
authored
1 year ago
by
Tomáš Marek
Browse files
Options
Downloads
Patches
Plain Diff
README about docker
parent
b107f028
No related branches found
No related tags found
2 merge requests
!61
Milestone 2
,
!59
README about docker
Pipeline
#
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
README.md
+47
-7
47 additions, 7 deletions
README.md
with
47 additions
and
7 deletions
README.md
+
47
−
7
View file @
dc95377c
...
...
@@ -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
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment