Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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
```