Skip to content

Commit 8184cf1

Browse files
committed
Upgrade baseimage: osixia/light-baseimage:0.1.2
1 parent db6af70 commit 8184cf1

File tree

4 files changed

+9
-6
lines changed

4 files changed

+9
-6
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# Changelog
22

3+
## 0.1.7
4+
- Upgrade baseimage: osixia/light-baseimage:0.1.2
5+
36
## 0.1.6
47
- Better way to add custom config
58
- Improve documentation

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
NAME = osixia/keepalived
2-
VERSION = 0.1.6
2+
VERSION = 0.1.7
33

44
.PHONY: all build test tag_latest release
55

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ This image require the kernel module ip_vs loaded on the host and need to be run
1313

1414
## Environment Variables
1515

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.
1717

1818
- **KEEPALIVED_INTERFACE**: Keepalived network interface. Defaults to `eth0`
1919
- **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
4646
docker run -e KEEPALIVED_INTERFACE="eno1" -e KEEPALIVED_PASSWORD="password!" \
4747
-e KEEPALIVED_PRIORITY="100" -d osixia/keepalived
4848

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`
5050

51-
docker run -v /data/my-env.yaml:/etc/env.yaml \
51+
docker run -v /data/my-env.yaml:/container/environment/env.yaml \
5252
-d osixia/keepalived
5353

5454
## Manual build

image/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM osixia/light-baseimage:0.1.1
1+
FROM osixia/light-baseimage:0.1.2
22
MAINTAINER Bertrand Gouny <[email protected]>
33

44
# Keepalived version
@@ -39,4 +39,4 @@ RUN /container/tool/install-service \
3939
&& rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
4040

4141
# Add default env variables
42-
ADD env.yaml /etc/env.yaml
42+
ADD env.yaml /container/environment/env.yaml

0 commit comments

Comments
 (0)