What's the advantage of using this over systemd user services? https://wiki.archlinux.org/title/Systemd/User Again, services are configured with short text-based configuration files.
Spin up your development background processes with ease
11–20 of 30 posts
Re: Spin up your development background processes with ease
#12If you want to take the next step past docker-compose, I strongly recommend Skaffold instead of moving backwards to supervisord.
Re: Spin up your development background processes with ease
#13Re: Spin up your development background processes with ease
#14Congratulations on the cool project.
Re: Spin up your development background processes with ease
#15This looks like a good alternative to Foreman ( https://ddollar.github.io/foreman/ ). Do you know about it? What advantages do you think Porter has over it? Congratulations on the cool project.
Re: Spin up your development background processes with ease
#16Re: Spin up your development background processes with ease
#17Re: Spin up your development background processes with ease
#18I was excited about this because I use docker-compose to run a service written in Rust. The final command of the container is “cargo watch -x run” and the compiles take 1-2 minutes per hot reload. Porter solved this by completely sidestepping images, but I’m still considering if this is worth having the user install cargo on their host machine (in the case of porter) and give up hermetic development. Not sure yet, bu…
Re: Spin up your development background processes with ease
#19amazing, I only wish for the VS Code integration
Re: Spin up your development background processes with ease
#20This is cool. I've been looking for something like this to pair with my nix env. Docker makes process management and logging in the dev environment so easy, but between the performance issues and abstraction leaks when jumping back and forth between native containers on linux and virtual machines on macos we gave up and started using nix to handle the reproducibility of our dev environment. The only thing I miss is t…