diff --git a/README.md b/README.md index 4904e5e..e4fd7b4 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,20 @@ -# drylauncher +# Drylauncher + +## Why I made this repository: + +### The [moncho/dry](https://hub.docker.com/r/moncho/dry) docker image has not been updated in about 6 years as of now in January 2026. +##### As a result I keep getting an error with it not working with the current version of docker. +To be fair, their [git](https://github.com/moncho/dry) seems to be active. Last edit 8 months ago. But does not change the fact this image does not work on my current docker setups due to a version issue. + +#### I did a little digging, and I found this [jauderho/dry](https://hub.docker.com/r/jauderho/dry) image being maintained, however the documentation on how to deploy the image is still on moncho's side. This seeks to fix that. All this is is a bash script set to run a docker command to download the latest image and run it. It combines the docker command from moncho's documentation, and just simply replaces the image with the current jauderho. + +## Installation + +## This script assumes that you already have DOCKER installed! + +1. #### Clone this repository using the command: `git clone https://git.bens-cloud.com/angel/drylauncher.git` +2. #### Either run the install.sh to automatically copy the binary to the proper directory. Make sure to make the .sh files executable by running `chmod +x dry *.sh` then `./install.sh` +### Or +#### Still run the command above to give the selected files executable and then manually copy the drylauncher binary to your /usr/local/bin/using the command: `cp dry.sh /usr/local/bin/dry` +3. #### Now simply run in your command line: `dry`. You may wish to launch it with sudo priveledges if your containers are running as root. If you dont see your containers, try instead running: `sudo dry`. -Just a docker command to launch the dry cli interface for docker. With the updated dry image \ No newline at end of file diff --git a/dry b/dry deleted file mode 100644 index 7960a89..0000000 --- a/dry +++ /dev/null @@ -1,3 +0,0 @@ -#!/bin/bash - -docker run --rm -it -v /var/run/docker.sock:/var/run/docker.sock -e DOCKER_HOST=$DOCKER_HOST jauderho/dry \ No newline at end of file