Skip to content

Commit

Permalink
Merge pull request #2 from SpiderOak/feature/FLOW-1966-wormhole-docke…
Browse files Browse the repository at this point in the history
…r-image

remove footer and use http for docker
  • Loading branch information
bdzim authored Jun 24, 2021
2 parents 0202767 + cd5031b commit 523f824
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 8 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@ RUN apk --no-cache add ca-certificates
COPY --from=build /src/ww /bin
COPY --from=build /src/web /web
WORKDIR /
ENTRYPOINT ["/bin/ww", "server"]
ENTRYPOINT ["/bin/ww", "server", "-https="]
9 changes: 9 additions & 0 deletions README
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,15 @@ To package the browser extension for Firefox or Chrome:

$ make webwormhole-ext.zip

To run the server using docker:
$ docker build -t webwormhole .
$ docker run -p 8000:80 webwormhole

To use a custom signalling server.
$ ww -signal http://localhost:8000 send test.txt
east-pep-aloe
$ ww -signal http://localhost:8000 receive east-pep-aloe

WebWormhole is inspired by and uses a model very similar to that
of Magic Wormhole.

Expand Down
7 changes: 0 additions & 7 deletions web/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -25,13 +25,6 @@
<input type="submit" id="dial" class="button" value="LOADING..." disabled />
<span id="autocomplete"></span>
</div>
<div id="footer">
<ul>
<li>source: <a href="https://github.com/saljam/webwormhole">github.com/saljam/webwormhole</a></li>
<li>feedback: <a href="mailto:[email protected]">[email protected]</a> <a href="https://twitter.com/_saljam">@_saljam</a></li>
<li>install: <a href="https://addons.mozilla.org/firefox/addon/webwormhole/">firefox</a> <a href="https://chrome.google.com/webstore/detail/webwormhole/jhombkhjanncdalcbcahinpjoacaiidn">chrome</a> <a href="https://pkg.go.dev/webwormhole.io/cmd/ww">command line</a></li>
</ul>
</div>
</form>
</body>
</html>

0 comments on commit 523f824

Please sign in to comment.