diff options
author | Begley Brothers (Development) | 2020-10-22 12:41:49 +1100 |
---|---|---|
committer | GitHub | 2020-10-21 21:41:49 -0400 |
commit | ff50274ff34e4342d8f6b9470345a1df341d8428 (patch) | |
tree | a6894ffab63781b209a3dd68a4dec0318e897eb8 /Dockerfile | |
parent | e9186362839749a83f4fcff2b01fc39de1ef4f45 (diff) |
Dockerfile: Support socat use cases (#13208)
* Dockerfile: Support socat use cases
In some contexts it is necessary to provide access to Gitea via TCP ports and unix sockets.
Gitea (`gitea web`) can be configured to listen for connections via unix-socket or TCP port, but not both.
When Gitea is installed to the host this limitation can be worked around by installing socat on the host.
When running Gitea from a container this limitation cannot be workaround.
Add socat to Gitea container.
* Removed version
Co-authored-by: techknowlogick <techknowlogick@gitea.io>
Diffstat (limited to 'Dockerfile')
-rw-r--r-- | Dockerfile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Dockerfile b/Dockerfile index 8800738bd..efa7dfbab 100644 --- a/Dockerfile +++ b/Dockerfile @@ -37,6 +37,7 @@ RUN apk --no-cache add \ openssh \ s6 \ sqlite \ + socat \ su-exec \ gnupg |