distributed-computing/tasks/savitskiy-al/lab_3/docker-compose.yml

15 lines
299 B
YAML
Raw Normal View History

2023-12-15 14:17:16 +04:00
version: "3.1"
services:
worker-1:
build: ./worker-1
worker-2:
build: ./worker-2
depends_on:
- worker-1
gateway:
image: nginx:latest
ports:
- 8080:8080
volumes:
- ./static:/usr/share/nginx/html:ro
- ./nginx.conf:/etc/nginx/conf.d/default.conf:ro