You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm using a container that has its own init system. Part of the init process of the container is to create the container user. I'm running into an issue where the devcontainer implementation starts trying to get information about the remoteUser before that user is even created.
Is there any method to block first-time container inspection/setup until a command finishes? I was hoping to use onCreateCommand for this, but it is run after the container is probed, not immediately after it is created.
Currently, there is no built-in method in Dev Container configuration to block the setup process until a certain command finishes. The onCreateCommand is indeed run after the container is probed, not immediately after it is created.
I'm using a container that has its own init system. Part of the init process of the container is to create the container user. I'm running into an issue where the devcontainer implementation starts trying to get information about the remoteUser before that user is even created.
Is there any method to block first-time container inspection/setup until a command finishes? I was hoping to use
onCreateCommand
for this, but it is run after the container is probed, not immediately after it is created.#299 might solve this issue.
The text was updated successfully, but these errors were encountered: