DAS_2024_1/kosheev_maksim_lab_3/docker-compose.yml

28 lines
482 B
YAML
Raw Normal View History

2024-11-21 04:43:58 +04:00
version: "3.8"
services:
books_service:
build:
context: ./books_service
dockerfile: Dockerfile
ports:
- "5000:5000"
subscriptions_service:
build:
context: ./subscriptions_service
dockerfile: Dockerfile
ports:
- "5001:5001"
nginx:
image: nginx:latest
volumes:
- ./nginx/nginx.conf:/etc/nginx/conf.d/default.conf
ports:
- "80:80"
depends_on:
- books_service
- subscriptions_service