mirror of
https://github.com/Dannecron/netology-devops.git
synced 2025-12-25 23:32:37 +03:00
22 lines
317 B
YAML
22 lines
317 B
YAML
version: "3.7"
|
|
|
|
services:
|
|
frontend:
|
|
build: ./frontend
|
|
ports:
|
|
- "8000:80"
|
|
|
|
backend:
|
|
build: ./backend
|
|
links:
|
|
- db
|
|
ports:
|
|
- "9000:9000"
|
|
|
|
db:
|
|
image: postgres:13-alpine
|
|
environment:
|
|
POSTGRES_PASSWORD: postgres
|
|
POSTGRES_USER: postgres
|
|
POSTGRES_DB: news
|