Skip to content

Commit f24d705

Browse files
author
valentinab25
committed
Upgrade to haproxy 1.8.14
1 parent 37e9f83 commit f24d705

4 files changed

Lines changed: 15 additions & 7 deletions

File tree

CHANGELOG.md

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

3+
## 2018-11-21 (1.8-1.3)
4+
5+
- Upgrade to haproxy 1.8.14
6+
- Move the restart of rsyslog and cron to run at every docker start
7+
8+
39
## 2018-08-02 (1.8-1.2)
410

511
- Upgrade to haproxy 1.8.13

haproxy/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM haproxy:1.8.13
1+
FROM haproxy:1.8.14
22
LABEL maintainer="EEA: IDM2 A-Team <eea-edw-a-team-alerts@googlegroups.com>"
33

44
RUN apt-get update \

haproxy/Readme.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ your non-related EEA projects.
1313

1414
### Stable and immutable tags
1515

16-
- `:1.8-1.2` [*Dockerfile*](https://github.com/eea/eea.docker.haproxy/tree/1.8-1.2/haproxy/Dockerfile) - HAProxy: **1.8** Release: **1.2**
16+
- `:1.8-1.3` [*Dockerfile*](https://github.com/eea/eea.docker.haproxy/tree/1.8-1.3/haproxy/Dockerfile) - HAProxy: **1.8** Release: **1.3**
1717

1818
See [older versions](https://github.com/eea/eea.docker.haproxy/releases)
1919

haproxy/docker-entrypoint.sh

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -26,14 +26,9 @@ if ! test -e /etc/haproxy/haproxy.cfg; then
2626

2727
fi
2828

29-
#enable cron logging
30-
service rsyslog restart
31-
3229
#add crontab
3330
crontab /var/crontab.txt
3431
chmod 600 /etc/crontab
35-
service cron restart
36-
3732

3833
#Add env variables for haproxy
3934
echo "export PATH=$PATH"':$PATH' >> /etc/environment
@@ -63,5 +58,12 @@ if ! test -e /etc/haproxy/haproxy.cfg; then
6358
if [ ! -z "$TIMEOUT_SERVER" ]; then echo "export TIMEOUT_SERVER=\"$TIMEOUT_SERVER\"" >> /etc/environment; fi
6459
fi
6560

61+
62+
#start logging
63+
service rsyslog restart
64+
65+
#start crontab
66+
service cron restart
67+
6668
exec /haproxy-entrypoint.sh "$@"
6769

0 commit comments

Comments
 (0)