Useful project. Name that no reasonable company would allow IT department to use. 10 out of 10! It worked for CockroachDB. I hope it turns into a unicorn and I'm not joking about that.
I believe people chose to pay Adobe subscriptions simply to avoid explaining the acronym for the GNU Image Manipulation Program in meetings.
Show HN: Pooshit – Sync local code to remote Docker containers
41–50 of 51 posts
Re: Show HN: Pooshit – Sync local code to remote Docker containers
#42I understand what you are trying to do but you should checkout dokploy or coolify. You push to github, github action builds it and hits dokploy webhook and it pulls your github code and build and deploy on that server. This is more reliable and industry way. What you are doing requires same amount of time to deploy and requires manual intervention every time. For once i thought you were moving code to server and then…
Re: Show HN: Pooshit – Sync local code to remote Docker containers
#43Useful project. Name that no reasonable company would allow IT department to use. 10 out of 10! It worked for CockroachDB. I hope it turns into a unicorn and I'm not joking about that.
I have never worked at or heard of a company caring about the names of software, at most it's been a bit of a chuckle. Best guess is being concerned about software names is a super conservative culture thing.
Re: Show HN: Pooshit – Sync local code to remote Docker containers
#44Neat project, but what does this do differently than docker compose with the --host flag? https://docs.docker.com/reference/cli/docker/#host It uploads your whole local docker context, source code and all, builds the image on the remote server and up's the container(s) all with a single command. I use this all the time when deploying simple services to avoid all of the complexity of registries etc. docker -H ssh://re…
Re: Show HN: Pooshit – Sync local code to remote Docker containers
#45Re: Show HN: Pooshit – Sync local code to remote Docker containers
#46Neat project, but what does this do differently than docker compose with the --host flag? https://docs.docker.com/reference/cli/docker/#host It uploads your whole local docker context, source code and all, builds the image on the remote server and up's the container(s) all with a single command. I use this all the time when deploying simple services to avoid all of the complexity of registries etc. docker -H ssh://re…
Probably pretty similar except you get to just write "pooshit" instead.
Re: Show HN: Pooshit – Sync local code to remote Docker containers
#47Neat project, but what does this do differently than docker compose with the --host flag? https://docs.docker.com/reference/cli/docker/#host It uploads your whole local docker context, source code and all, builds the image on the remote server and up's the container(s) all with a single command. I use this all the time when deploying simple services to avoid all of the complexity of registries etc. docker -H ssh://re…
Re: Show HN: Pooshit – Sync local code to remote Docker containers
#48I understand what you are trying to do but you should checkout dokploy or coolify. You push to github, github action builds it and hits dokploy webhook and it pulls your github code and build and deploy on that server. This is more reliable and industry way. What you are doing requires same amount of time to deploy and requires manual intervention every time. For once i thought you were moving code to server and then…
There is nothing “industry way” about letting CI automatically deploy your production environment.
Re: Show HN: Pooshit – Sync local code to remote Docker containers
#49Re: Show HN: Pooshit – Sync local code to remote Docker containers
#50This is a steaming pile of SFTP. Why not use rsync or wrap it if you must? For anyone who's interested in proper bidirectional sync check out Mutagen.[0] [0]: https://mutagen.io/documentation/synchronization/
Because I don't want to do this: https://mutagen.io/documentation/introduction/getting-starte...