dockerfiles
dockerfiles copied to clipboard
Configuring dante with authentification
When I using your dante docker image (https://hub.docker.com/r/vimagick/dante/) I need to configure my user and password when I already started docker container. Now I am using next combination: run.sh: docker-compose up -d && docker exec -it socks5_dante_1 bash -c "useradd myuser; echo myuser:mypassword | chpasswd"
But it'll be much better to create enviroment variable in docker image to provide user and password for proxy to configure it in docker-compose file to run image with one command than two.
same