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: README.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -223,13 +223,13 @@ For example, suppose the shell contains EXTERNAL_PORT=5000 and you supply this c
223
223
env:
224
224
EXTERNAL_PORT: $EXTERNAL_PORT
225
225
````
226
-
When you run Skipper command with this configuration, Skipper looks for the EXTERNAL_PORT environment variable in the shell and substitutes its value in.In this example, Skipper resolves the $EXTERNAL_PORT to "5000" and will set EXTERNAL_PORT=5000 environment in the container.
226
+
When you run Skipper command with this configuration, Skipper looks for the EXTERNAL_PORT environment variable in the shell and substitutes its value in.In this example, Skipper resolves the `$EXTERNAL_PORT` to "5000" and will set EXTERNAL_PORT=5000 environment in the container.
227
227
228
228
If an environment variable is not set, Skipper substitutes with an empty string.
229
229
230
-
Both $VARIABLE and ${VARIABLE} syntax are supported. Extended shell-style features, such as ${VARIABLE-default} and ${VARIABLE/foo/bar}, are not supported.
230
+
Both `$VARIABLE` and `${VARIABLE}` syntax are supported. Extended shell-style features, such as `${VARIABLE-default}` and `${VARIABLE/foo/bar}`, are not supported.
231
231
232
-
You can use a $$ (double-dollar sign) when your configuration needs a literal dollar sign. This also prevents Skipper from interpolating a value, so a $$ allows you to refer to environment variables that you don’t want processed by Skipper.
232
+
You can use a `$$` (double-dollar sign) when your configuration needs a literal dollar sign. This also prevents Skipper from interpolating a value, so a `$$` allows you to refer to environment variables that you don’t want processed by Skipper.
233
233
````
234
234
env:
235
235
VAR: $$VAR_NOT_INTERPOLATED
@@ -275,4 +275,4 @@ workdir: $PWD
275
275
276
276
### Skipper environment variables
277
277
Skipper sets environemnt variables to inform the user about the underline system:
278
-
CONTAINER_RUNTIME_COMMAND - The container conmmand used to run the skipper container. podman/docker
278
+
CONTAINER_RUNTIME_COMMAND - The container conmmand used to run the skipper container. podman/docker
0 commit comments