From cd00de123967782ec327b36e7a1c35d107c18db5 Mon Sep 17 00:00:00 2001 From: Jesse Rusak Date: Wed, 1 Dec 2021 19:36:27 -0500 Subject: [PATCH] add gamebot --- README.md | 1 + docker-compose.yml | 9 ++++++--- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 1db28ac..7929d89 100644 --- a/README.md +++ b/README.md @@ -16,5 +16,6 @@ A quick hack building a Lua-based MOO in Rust with a React UI. ## Running on a server * Clone `killpop` next to `orisa`. +* Clone `gamebot` next to `orisa`. * `docker-compose up --build` will build & run two containers and expose on port 8080. Note that the config and dockerfiles are aimed at production use, not development. \ No newline at end of file diff --git a/docker-compose.yml b/docker-compose.yml index 37d09f8..34ab957 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -1,8 +1,8 @@ version: '3' -services: +services: frontend: build: client - ports: + ports: - 8080:80 links: - backend @@ -21,4 +21,7 @@ services: - ORISA_CODE_BRANCH=master - RUST_BACKTRACE=1 - RUST_LOG=INFO - restart: always \ No newline at end of file + restart: always + gamebot: + build: ../gamebot + restart: always