diff options
author | Raul Benencia <raul@thousandeyes.com> | 2021-01-12 16:57:26 -0800 |
---|---|---|
committer | Raul Benencia <46945030+raul-te@users.noreply.github.com> | 2021-01-13 10:50:35 -0800 |
commit | cfa915142c2bbff8d1572488b6343e56dfef9b64 (patch) | |
tree | 66961e8009fb10e84ddec3b55633d8cd4769cff8 /Dockerfile | |
parent | fa13436d4ceba235081c9eedb8d6f586ea21e7aa (diff) |
Segregate BindAddr and BaseURL
Diffstat (limited to 'Dockerfile')
-rw-r--r-- | Dockerfile | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -13,7 +13,9 @@ COPY --from=build /tmp/shoelaces /shoelaces WORKDIR /data COPY --from=build /tmp/mappings.yaml mappings.yaml COPY --from=build /shoelaces/web /web -ENV DOMAIN=0.0.0.0 -ENV PORT=8081 + +ENV BIND_ADDR=0.0.0.0:8081 +EXPOSE 8081 + ENTRYPOINT ["/shoelaces"] CMD ["-data-dir", "/data", "-static-dir", "/web"] |