Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
Formula Team Management
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
Jitka Viceníková
Formula Team Management
Compare revisions
5bd854bfd99daf59ddb1175f49f2295599adb29d to 4082dc7cca3f2f8e8e308fa421fafde7f410a1f6
Compare revisions
Changes are shown as if the
source
revision was being merged into the
target
revision.
Learn more about comparing revisions.
Source
xvicenik/formula-team-management
Select target project
No results found
4082dc7cca3f2f8e8e308fa421fafde7f410a1f6
Select Git revision
Branches
develop
main
Swap
Target
xvicenik/formula-team-management
Select target project
xvicenik/formula-team-management
1 result
5bd854bfd99daf59ddb1175f49f2295599adb29d
Select Git revision
Branches
develop
main
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Commits on Source (3)
fix(docker): build all images into one container in docker compose
· b31538e5
Alžbeta Hajná
authored
1 year ago
b31538e5
fix(openapi): port matching application.properties
· 99fd7825
Alžbeta Hajná
authored
1 year ago
99fd7825
Merge branch 'docker-build' into 'develop'
· 4082dc7c
Michal Badin
authored
1 year ago
Docker build + server ports See merge request
!41
4082dc7c
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
README.md
+2
-1
2 additions, 1 deletion
README.md
application/openapi.yaml
+1
-1
1 addition, 1 deletion
application/openapi.yaml
docker-compose.yaml
+4
-4
4 additions, 4 deletions
docker-compose.yaml
visualization/openapi.yaml
+1
-1
1 addition, 1 deletion
visualization/openapi.yaml
with
8 additions
and
7 deletions
README.md
View file @
4082dc7c
...
...
@@ -153,9 +153,10 @@ To run all modules at once in one container, you can run in root directory
docker-compose up
```
*Note: in case you want to also rebuild images, use flag `--build`*
*Note: use flag `-d` for detached mode*
To stop container
To stop container
run
```
bash
docker-compose down
...
...
This diff is collapsed.
Click to expand it.
application/openapi.yaml
View file @
4082dc7c
...
...
@@ -5,7 +5,7 @@ info:
Hand-made OpenAPI document.
version
:
1.0.0
servers
:
-
url
:
"
http://localhost:808
0
"
-
url
:
"
http://localhost:808
1
"
tags
:
-
name
:
ApplicationService
components
:
...
...
This diff is collapsed.
Click to expand it.
docker-compose.yaml
View file @
4082dc7c
...
...
@@ -2,18 +2,18 @@
version
:
'
3'
services
:
core
:
image
:
pa165/formula-team-management/core-image
build
:
"
./core"
ports
:
-
"
8080:8080"
application
:
image
:
pa165/formula-team-management
/application
-image
build
:
"
.
/application
"
ports
:
-
"
8081:8081"
visualization
:
image
:
pa165/formula-team-management
/visualization
-image
build
:
"
.
/visualization
"
ports
:
-
"
8082:8082"
notification
:
image
:
pa165/formula-team-management
/notification
-image
build
:
"
.
/notification
"
ports
:
-
"
8083:8083"
\ No newline at end of file
This diff is collapsed.
Click to expand it.
visualization/openapi.yaml
View file @
4082dc7c
...
...
@@ -5,7 +5,7 @@ info:
Hand-made OpenAPI document.
version
:
1.0.0
servers
:
-
url
:
"
http://localhost:808
0
"
-
url
:
"
http://localhost:808
2
"
tags
:
-
name
:
Visualization
components
:
...
...
This diff is collapsed.
Click to expand it.