diff options
| author | Chris Jones <chris@sysengineerchris.com> | 2024-01-21 18:51:47 -0500 |
|---|---|---|
| committer | Jeff Halter <868228+jhalter@users.noreply.github.com> | 2024-01-21 16:13:25 -0800 |
| commit | 7e386958a0a66ad5ed41be9abb88fc34ad11a6da (patch) | |
| tree | 068a80ccbf9c818a00a1306ab9703d9f591ce022 | |
| parent | 5f81c5c8e4cae2d2aad0301a0fc6ad08ae0c417e (diff) | |
Adding docker compose. Updating .gitignore
| -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 |