Skip to content

Commit cf47e98

Browse files
authored
Fix a wrong EDF field reference (#267)
While dealing with a user ticket [SD-66984](https://jira.cscs.ch/browse/SD-66984), we noticed that an EDF reference is specifying a wrong default value for the field `entrypoint`. This PR fixed it.
1 parent e8165c9 commit cf47e98

File tree

1 file changed

+5
-5
lines changed
  • docs/software/container-engine

1 file changed

+5
-5
lines changed

docs/software/container-engine/edf.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -93,16 +93,16 @@ Initial working directory when the container starts.
9393

9494
### `entrypoint`
9595

96-
| | |
97-
|-------------|--------|
98-
| **Type** | bool |
99-
| **Default** | `true` |
96+
| | |
97+
|-------------|---------|
98+
| **Type** | bool |
99+
| **Default** | `false` |
100100

101101
If true, run the entrypoint from the container image.
102102

103103
!!! example
104104
```toml
105-
entrypoint = false
105+
entrypoint = true
106106
```
107107

108108
### `writable`

0 commit comments

Comments
 (0)