Skip to content

Commit f7d1ebe

Browse files
committed
docker compose
1 parent a1f811f commit f7d1ebe

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

docker-compose.yml

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
version: '1'
2+
services:
3+
web:
4+
build: ./nginx
5+
ports:
6+
- "80:80"
7+
depends_on:
8+
- api
9+
api:
10+
build:
11+
context: .
12+
dockerfile: Dockerfile
13+
ports:
14+
- "8080:8080"
15+

0 commit comments

Comments
 (0)