Replies: 1 comment 1 reply
-
Hi 👋 Thanks for reporting the issue.
Does that mean you are using |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
We have multiple developers working with the same code base in their remote devcontainer environment, but on the same dev server. We are using vscode devcontainers.
I have the following docker compose which is designed to build/start user specific images and containers:
The env file looks like this:
docker compose will pass some of the variables to the docker file as args. the dockerfile should create the user and start set the USER to the specific user
Each developer has different settings for their .env file so that an image suffixed with their name is built as well as a container suffixed with their name is started. I can see the different user specific images with different image ids, and i can also see the running dev containers with different user specific names.
The problem is though, is if im in my container, then another user builds their container, i get a disconnect, and when i reconnect, i am entering as that other user that just built/started their image and container.
Any ideas what may be going on here and how to solve
Beta Was this translation helpful? Give feedback.
All reactions