https://github.com/mefellows/docker-muxy
Official Docker image for Muxy
https://github.com/mefellows/docker-muxy
chaos-testing docker muxy resilience-testing tool
Last synced: about 2 months ago
JSON representation
Official Docker image for Muxy
- Host: GitHub
- URL: https://github.com/mefellows/docker-muxy
- Owner: mefellows
- License: mit
- Created: 2015-12-27T10:47:34.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2020-10-20T19:51:34.000Z (over 5 years ago)
- Last Synced: 2025-03-22T07:55:35.892Z (over 1 year ago)
- Topics: chaos-testing, docker, muxy, resilience-testing, tool
- Language: Shell
- Size: 3.91 KB
- Stars: 0
- Watchers: 1
- Forks: 2
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Muxy Dockerfile
Official Docker image for [Muxy](https://github.com/mefellows/muxy).
Base Docker Image: [dockerfile/debian](https://hub.docker.com/_/debian/)
## Installation
* Install [Docker](https://www.docker.com/).
* Download build from public Docker Hub Registry: `docker pull mefellows/muxy`
(alternatively, you can build an image from Dockerfile: `docker build -t="mefellows/muxy" github.com/mefellows/docker-muxy`).
## Usage
Muxy requires a [config file](https://github.com/mefellows/muxy#configuration-reference) to run. Create one, and then share it at `/opt/muxy/conf/config.yml` within the Docker container, ensuring that the container is running a [privileged](https://docs.docker.com/engine/reference/run/#runtime-privilege-linux-capabilities-and-lxc-configuration) network.
Likely, you will also need to expose a port to connect to. Assuming you a proxying on port 80:
```
docker run \
-d \
-p 80:80 \
-v :/opt/muxy/conf/config.yml \
--privileged \
mefellows/muxy
```