diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 0000000..d1dfaf1 --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,14 @@ +rethinkdb: + image: rethinkdb + ports: + - "28015:28015" + - "8080:8080" +horizon: + image: rethinkdb/horizon + command: su -s /bin/sh horizon -c "hz serve --connect rethinkdb:28015 --bind all /usr/app" + volumes: + - ./:/usr/app + links: + - rethinkdb + ports: + - "8181:8181" \ No newline at end of file