diff options
| -rw-r--r-- | .gitignore | 5 | ||||
| -rw-r--r-- | docker-compose.yml | 11 |
2 files changed, 15 insertions, 1 deletions
@@ -23,4 +23,7 @@ build dist/* -*log
\ No newline at end of file +*log + +# Ignore the bind mounted config directory +config/* diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 0000000..a300225 --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,11 @@ +services: + mobius-hotline-server: + build: . + ports: + - "5500:5500" + - "5501:5501" + # If you intend to bind mount the config directory run + # cp -r cmd/mobius-hotline-server/mobius/config ./config + # first. + # volumes: + # - ./config:/usr/local/var/mobius/config |