23 lines
539 B
YAML
23 lines
539 B
YAML
services:
|
|
auth-service:
|
|
build:
|
|
context: .
|
|
dockerfile: DockerApiServices/AuthServiceApi/Dockerfile
|
|
ports:
|
|
- "41575:41575"
|
|
|
|
event-service:
|
|
build:
|
|
context: .
|
|
dockerfile: DockerApiServices/EventServiceApi/Dockerfile
|
|
ports:
|
|
- "8001:8000"
|
|
|
|
validation-service:
|
|
build:
|
|
context: .
|
|
dockerfile: DockerApiServices/ValidationServiceApi/Dockerfile
|
|
ports:
|
|
- "8002:8000"
|
|
# and lets try to implement potry again in the dockerfile now we now that it is about copy of files
|