Skip to content

Commit 6c906fc

Browse files
committed
Update to Redis 5.0.9
1 parent 5a290fb commit 6c906fc

File tree

5 files changed

+31
-36
lines changed

5 files changed

+31
-36
lines changed

.github/workflows/on-publish.yaml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
---
2+
name: Publish Docker image
3+
on:
4+
push:
5+
branches:
6+
- master
7+
release:
8+
types:
9+
- published
10+
jobs:
11+
main:
12+
runs-on: ubuntu-latest
13+
steps:
14+
- name: Check out the repo
15+
uses: actions/checkout@v2
16+
- name: Push to Docker Hub
17+
uses: docker/build-push-action@v1
18+
with:
19+
username: gavinmroy
20+
password: ${{ secrets.DOCKER_PASSWORD }}
21+
repository: gavinmroy/alpine-redis
22+
tag_with_ref: true

.travis.yml

Lines changed: 0 additions & 33 deletions
This file was deleted.

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM alpine:3.8
1+
FROM alpine:3.12
22
RUN apk --no-cache add redis \
33
&& sed -i 's/protected-mode yes/protected-mode no/' /etc/redis.conf \
44
&& sed -i 's/^\(bind .*\)$/# \1/' /etc/redis.conf \

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2018 Gavin M. Roy
1+
Copyright (c) 2018-2020 Gavin M. Roy
22
All rights reserved.
33

44
Redistribution and use in source and binary forms, with or without modification,

README.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,10 @@ docker run --name redis -p 6379 gavinmroy/alpine-redis:latest
1515

1616
## Changelog
1717

18-
- Update to Alpine 3.8, Redis 4.0.11, add healtcheck
18+
### 2020-11-20
19+
20+
Update to Alpine 3.12, Redis 5.0.9, add healtcheck
21+
22+
### 2018-11-30
23+
24+
Update to Alpine 3.8, Redis 4.0.11, add healtcheck

0 commit comments

Comments
 (0)