A webapplication allows you copy & paste things between devices.
Just simply start the container, you can run with port or add nginx reverse proxy by yourself.
Without Google reCAPTCHA
docker run -d -p 8080:80 moekiwisama/pastebin:latest
With Google reCAPTCHA
docker run -d -p 8080:80 -e args="--userecaptcha=true --secretkey=your-secretkey --publickey=your-publickey -recaptcharate=0.6" moekiwisama/pastebin:latest
âš Go(=>1.13) is [required]. âš
git clone https://github.com/moeKiwiSAMA/Pastebin
cd Pastebin
make
The final binary result exist in bin/pastebin, you should make a dir and put your website(public) with the binary file.
cp bin/pastebin ./
./pastebin
âš An Redis instance is required. âš
Pastebin takes some parameters, you can find them with pastebin --help
Usage of ./pastebin:
-address string
Pastebin Listen Port (default "0.0.0.0")
-port string
Pastebin Bind IP (default "80")
-publickey string
Recaptcha site key
-recaptcharate float
Recaptcha verify score (default 0.6)
-redisadd string
RedisIP (default "127.0.0.1")
-redisport string
RedisPort (default "6379")
-secretkey string
Recaptcha Secret Key
-userecaptcha
Use Google Recaptcha or not
And here we go.
Now listening on: http://0.0.0.0:80
Application started. Press CTRL+C to shut down