Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/force-adverse/3proxy-docker
3proxy Docker image
https://github.com/force-adverse/3proxy-docker
Last synced: about 1 month ago
JSON representation
3proxy Docker image
- Host: GitHub
- URL: https://github.com/force-adverse/3proxy-docker
- Owner: force-adverse
- Created: 2021-11-04T10:38:16.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2021-11-06T18:11:51.000Z (about 3 years ago)
- Last Synced: 2023-03-21T03:14:19.172Z (almost 2 years ago)
- Language: Dockerfile
- Size: 6.84 KB
- Stars: 1
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# 3proxy-docker
Docker image containing a 3proxy binary.
You should build this image yourself and push it to your private registry.
See [the build Action](./.github/workflows/build-docker.yml) for more information.## Binary
Built binary is available @ `/usr/local/bin/3proxy`
## Action
The Action will trigger build on push of modifications to Dockerfile or manual workflow dispatch.
## Info for FORAD members
Image can be found at `ghcr.io/force-adverse/3proxy-docker:latest`
## Copying binary to another Docker image (composition)
Example from one of our internal Dockerfile:
```dockerfile
FROM alpine:latest# install 3proxy
COPY --from=ghcr.io/force-adverse/3proxy-docker:latest /usr/local/bin/3proxy /usr/local/bin/3proxy
```