16 lines
296 B
YAML
16 lines
296 B
YAML
|
services:
|
||
|
vacancies-service:
|
||
|
build: ./vacancy-service
|
||
|
ports:
|
||
|
- "5000:5000"
|
||
|
resumes-service:
|
||
|
build: ./resume-service
|
||
|
ports:
|
||
|
- "5001:5001"
|
||
|
gateway:
|
||
|
image: nginx:latest
|
||
|
ports:
|
||
|
- "80:80"
|
||
|
volumes:
|
||
|
- ./nginx.conf:/etc/nginx/conf.d/default.conf
|