Comment on Ask HN: Which self-hosted solutions are you using?parentComments−amanzi8yI just do it manually for now but have created some bash_aliases to help: alias dcup='docker-compose up -d' alias dcrestart='docker-compose down && dcup' alias dcpull='docker-compose pull' alias dcpullup='docker-compose pull && docker-compose up -d'
Comments
I just do it manually for now but have created some bash_aliases to help: