-
Notifications
You must be signed in to change notification settings - Fork 27
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Automatically build Docker images for docker-compose-web using GitHub Actions #84
Comments
I've updated the $ docker run -v VOLUME_NAME:/usr/src/app yamiodymel/chaturbate-dvr:v1.0.6 -u CHANNEL_NAME It's been a while since I used Docker, just tell me if anything went wrong. EDIT: oh no, I didnt see you were asking for |
Thanks for your swift response! The image works fine. A regularly updated image for the web version would be nice to have. This image can actually be used to install the web version. But with some shortcomings: no security, no volume mappings and no settings are stored when redeploying. Maybe all that is needed is the right yaml file attached when pushing the docker image? |
I don't fully understand the purpose of ".yml" files 🤔
$ docker run -v VOLUME_NAME:/usr/src/app yamiodymel/chaturbate-dvr
$ docker run yamiodymel/chaturbate-dvr -gui-username ADMIN_USERNAME -gui-password ADMIN_PASSWORD Once you mapped it with a volume, it should retain the same settings the next time you start the same container. |
yes. thats right. and that is where yaml files come in really handy. yaml files replace docker commands to:
by pressing 1 button, with 1 yaml file you could for example build/deploy/upgrade 1 environment containing:
With chaturbate-dvr-web, this yaml file is small since there is no interaction between images and only few settings are required. Many NAS users would definitely prefer to push a button (and edit some settings in a web interface if needed) over running shell commands and editing config files hidden in some folder somewhere. paperless-ngx running on true nas scale with docker compose and just 1 custom yaml file: |
It would be nice if we could automatically pull and update to the latest docker image from e.g. docker hub instead of having to build and maintain it manually from github. The requirement to build the binaries for docker is a big hurdle to overcome for many people. #76
https://medium.com/@kicsipixel/using-github-actions-to-automatically-build-docker-images-65a038b8ce56
The text was updated successfully, but these errors were encountered: