DAS_2024_1/bondarenko_max_lab_3/docker-compose.yml

21 lines
295 B
YAML
Raw Normal View History

2024-11-25 02:10:37 +04:00
version: '3.7'
services:
authors:
build:
context: ./authors
ports:
- "3000:3000"
books:
build:
context: ./books
ports:
- "3001:3001"
nginx:
image: nginx:latest
ports:
- "80:80"
volumes:
- ./nginx.conf:/etc/nginx/nginx.conf