Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • xvicenik/formula-team-management
1 result
Show changes
Commits on Source (3)
......@@ -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
......
......@@ -5,7 +5,7 @@ info:
Hand-made OpenAPI document.
version: 1.0.0
servers:
- url: "http://localhost:8080"
- url: "http://localhost:8081"
tags:
- name: ApplicationService
components:
......
......@@ -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
......@@ -5,7 +5,7 @@ info:
Hand-made OpenAPI document.
version: 1.0.0
servers:
- url: "http://localhost:8080"
- url: "http://localhost:8082"
tags:
- name: Visualization
components:
......