Skip to content
Snippets Groups Projects
Commit 4082dc7c authored by Michal Badin's avatar Michal Badin
Browse files

Merge branch 'docker-build' into 'develop'

Docker build + server ports

See merge request !41
parents f0a071d2 99fd7825
No related branches found
No related tags found
2 merge requests!54Merge develop into main,!41Docker build + server ports
Pipeline #
...@@ -153,9 +153,10 @@ To run all modules at once in one container, you can run in root directory ...@@ -153,9 +153,10 @@ To run all modules at once in one container, you can run in root directory
docker-compose up docker-compose up
``` ```
*Note: in case you want to also rebuild images, use flag `--build`*
*Note: use flag `-d` for detached mode* *Note: use flag `-d` for detached mode*
To stop container To stop container run
```bash ```bash
docker-compose down docker-compose down
......
...@@ -5,7 +5,7 @@ info: ...@@ -5,7 +5,7 @@ info:
Hand-made OpenAPI document. Hand-made OpenAPI document.
version: 1.0.0 version: 1.0.0
servers: servers:
- url: "http://localhost:8080" - url: "http://localhost:8081"
tags: tags:
- name: ApplicationService - name: ApplicationService
components: components:
......
...@@ -2,18 +2,18 @@ ...@@ -2,18 +2,18 @@
version: '3' version: '3'
services: services:
core: core:
image: pa165/formula-team-management/core-image build: "./core"
ports: ports:
- "8080:8080" - "8080:8080"
application: application:
image: pa165/formula-team-management/application-image build: "./application"
ports: ports:
- "8081:8081" - "8081:8081"
visualization: visualization:
image: pa165/formula-team-management/visualization-image build: "./visualization"
ports: ports:
- "8082:8082" - "8082:8082"
notification: notification:
image: pa165/formula-team-management/notification-image build: "./notification"
ports: ports:
- "8083:8083" - "8083:8083"
\ No newline at end of file
...@@ -5,7 +5,7 @@ info: ...@@ -5,7 +5,7 @@ info:
Hand-made OpenAPI document. Hand-made OpenAPI document.
version: 1.0.0 version: 1.0.0
servers: servers:
- url: "http://localhost:8080" - url: "http://localhost:8082"
tags: tags:
- name: Visualization - name: Visualization
components: components:
......
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