https://pulumi.com logo
#general
Title
# general
m

most-lighter-95902

01/20/2022, 5:43 AM
Hi what’s the best practice for multiple people working on the same dev stack? Right now our dev stack sets up multiple docker containers locally (with Pulumi generated names) and every time someone’s computer restarts, the next
pulumi up
fails with an error
container XXX cannot be deleted because it cannot be found
(this is not the exact error message) because someone else did
pulumi up
on the dev stack and the container names no longer match.
e

echoing-dinner-19531

01/20/2022, 9:29 AM
So multiple developers are trying to deploy the same stack but locally to their machines? Why aren't you just using a separate stack per developer?
👍 1
m

most-lighter-95902

01/20/2022, 4:40 PM
OK so that’s the best practice? The dev stack is the same setup for all developers so I wasn’t sure if creating a stack per developer was the right move.
e

echoing-dinner-19531

01/20/2022, 4:46 PM
If your just creating local docker containers then yes, I think the best setup would be each developer just has their own stack for the docker containers on their machine.
👍 2
m

most-lighter-95902

01/20/2022, 11:16 PM
OK great - thank you!!
3 Views