Files
DAS_2025_1/zhirnova_alyona_lab_3/Docker-compose.yaml
2025-10-07 11:50:31 +04:00

27 lines
506 B
YAML

services:
producer_service:
container_name: producer_service
build:
context: .
dockerfile: ./producer_service/Dockerfile
expose:
- 8080
cartoon_service:
container_name: cartoon_service
build:
context: .
dockerfile: ./cartoon_service/Dockerfile
expose:
- 8081
nginx:
image: nginx:latest
ports:
- "80:80"
volumes:
- ./nginx.conf:/etc/nginx/nginx.conf
depends_on:
- producer_service
- cartoon_service