Skip to content

Commit f515d0a

Browse files
committed
Add docker-compose file that uses images
1 parent 3215304 commit f515d0a

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

deploy/docker-compose-img.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
version: "3"
2+
services:
3+
db:
4+
image: rethinkdb
5+
volumes:
6+
- ./db:/data
7+
8+
api:
9+
image: yamalight/bpwjs-server
10+
environment:
11+
- EXPERTS_DB_URL=db
12+
ports:
13+
- 8080:8080
14+
15+
ui:
16+
image: yamalight/bpwjs-client
17+
environment:
18+
- API_HOST=http://localhost:8080
19+
ports:
20+
- 80:3000

0 commit comments

Comments
 (0)