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
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -13,7 +13,7 @@ This image require the kernel module ip_vs loaded on the host (`modprobe ip_vs`)
13
13
14
14
## Environment Variables
15
15
16
-
Environement variables defaults are set in **image/env.yaml**. You can modify environment variable values directly in this file and rebuild the image ([see manual build](#manual-build)). You can also override those values at run time with -e argument or by setting your own env.yaml file as a docker volume to `/etc/env.yaml`. See examples below.
16
+
Environement variables defaults are set in **image/env.yaml**. You can modify environment variable values directly in this file and rebuild the image ([see manual build](#manual-build)). You can also override those values at run time with -e argument or by setting your own env.yaml file as a docker volume to `/container/environment/env.yaml`. See examples below.
17
17
18
18
-**KEEPALIVED_INTERFACE**: Keepalived network interface. Defaults to `eth0`
19
19
-**KEEPALIVED_PASSWORD**: Keepalived password. Defaults to `d0cker`
@@ -46,9 +46,9 @@ Environment variable can be set directly by adding the -e argument in the comman
46
46
docker run -e KEEPALIVED_INTERFACE="eno1" -e KEEPALIVED_PASSWORD="password!" \
47
47
-e KEEPALIVED_PRIORITY="100" -d osixia/keepalived
48
48
49
-
Or by setting your own `env.yaml` file as a docker volume to `/etc/env.yaml`
49
+
Or by setting your own `env.yaml` file as a docker volume to `/container/environment/env.yaml`
50
50
51
-
docker run -v /data/my-env.yaml:/etc/env.yaml \
51
+
docker run -v /data/my-env.yaml:/container/environment/env.yaml \
0 commit comments