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 /docker-compose.yml | |
| parent | 5f81c5c8e4cae2d2aad0301a0fc6ad08ae0c417e (diff) | |
Adding docker compose. Updating .gitignore
Diffstat (limited to 'docker-compose.yml')
| -rw-r--r-- | docker-compose.yml | 11 |
1 files changed, 11 insertions, 0 deletions
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 |