Skip to content

Commit 595500d

Browse files
authored
Create docker-compose.yml
1 parent 9f3ba6b commit 595500d

1 file changed

Lines changed: 25 additions & 0 deletions

File tree

ci_cd/docker-compose.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
version: '3.8'
2+
services:
3+
backend:
4+
build:
5+
context: ./backend
6+
ports:
7+
- "5000:5000"
8+
9+
frontend:
10+
build:
11+
context: ./frontend
12+
ports:
13+
- "3000:3000"
14+
15+
prometheus:
16+
image: prom/prometheus
17+
ports:
18+
- "9090:9090"
19+
volumes:
20+
- ./observability/prometheus.yml:/etc/prometheus/prometheus.yml
21+
22+
grafana:
23+
image: grafana/grafana
24+
ports:
25+
- "3001:3000"

0 commit comments

Comments
 (0)