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
Copy file name to clipboardExpand all lines: docs/devcontainer-best-practices.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -14,7 +14,7 @@ A DevContainer (Development Container) is a Docker container that defines your d
14
14
15
15
When configuring your development environment, it's recommended to use [DevContainer features](https://containers.dev/features) whenever possible. Features are reusable, pre-configured components that can be added to your devcontainer.json file. They provide a standardized way to add common tools, languages, and services to your development environment.
16
16
17
-
The available features are documented in the `/workspaces/flex-demo/docs/devcontainer-features.yml` file, which is manually pulled from the [DevContainer collection index](https://github.com/devcontainers/devcontainers.github.io/blob/gh-pages/_data/collection-index.yml). This ensures you have access to the latest community-maintained features.
17
+
The available features are documented in the `/workspaces/gitpodflix-demo/docs/devcontainer-features.yml` file, which is manually pulled from the [DevContainer collection index](https://github.com/devcontainers/devcontainers.github.io/blob/gh-pages/_data/collection-index.yml). This ensures you have access to the latest community-maintained features.
Copy file name to clipboardExpand all lines: issue-report-automations-race-condition.txt
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -33,7 +33,7 @@ services:
33
33
- postEnvironmentStart
34
34
commands:
35
35
start: |
36
-
cd /workspaces/flex-demo/frontend
36
+
cd /workspaces/gitpodflix-demo/frontend
37
37
PORT=3000 npm run dev
38
38
39
39
management-ui:
@@ -43,7 +43,7 @@ services:
43
43
- postEnvironmentStart
44
44
commands:
45
45
start: |
46
-
cd /workspaces/flex-demo/management-ui
46
+
cd /workspaces/gitpodflix-demo/management-ui
47
47
PORT=3001 npm run dev
48
48
```
49
49
@@ -110,4 +110,4 @@ Suggested Fix:
110
110
The Gitpod platform should ensure that postDevcontainerStart triggers occur only after the devcontainer is fully initialized, including all postCreateCommand operations. This would prevent services from starting before their dependencies are available.
111
111
112
112
Additional Notes:
113
-
This appears to be a platform-level issue with the timing of automation triggers rather than a configuration issue in the workspace. The fact that services work after restart without any changes suggests that the problem lies in the sequencing of initialization events.
113
+
This appears to be a platform-level issue with the timing of automation triggers rather than a configuration issue in the workspace. The fact that services work after restart without any changes suggests that the problem lies in the sequencing of initialization events.
0 commit comments