Skip to content

Commit

Permalink
Update to Redis 5.0.9
Browse files Browse the repository at this point in the history
  • Loading branch information
gmr committed Nov 20, 2020
1 parent 5a290fb commit 6c906fc
Show file tree
Hide file tree
Showing 5 changed files with 31 additions and 36 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/on-publish.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
---
name: Publish Docker image
on:
push:
branches:
- master
release:
types:
- published
jobs:
main:
runs-on: ubuntu-latest
steps:
- name: Check out the repo
uses: actions/checkout@v2
- name: Push to Docker Hub
uses: docker/build-push-action@v1
with:
username: gavinmroy
password: ${{ secrets.DOCKER_PASSWORD }}
repository: gavinmroy/alpine-redis
tag_with_ref: true
33 changes: 0 additions & 33 deletions .travis.yml

This file was deleted.

2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM alpine:3.8
FROM alpine:3.12
RUN apk --no-cache add redis \
&& sed -i 's/protected-mode yes/protected-mode no/' /etc/redis.conf \
&& sed -i 's/^\(bind .*\)$/# \1/' /etc/redis.conf \
Expand Down
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright (c) 2018 Gavin M. Roy
Copyright (c) 2018-2020 Gavin M. Roy
All rights reserved.

Redistribution and use in source and binary forms, with or without modification,
Expand Down
8 changes: 7 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,10 @@ docker run --name redis -p 6379 gavinmroy/alpine-redis:latest

## Changelog

- Update to Alpine 3.8, Redis 4.0.11, add healtcheck
### 2020-11-20

Update to Alpine 3.12, Redis 5.0.9, add healtcheck

### 2018-11-30

Update to Alpine 3.8, Redis 4.0.11, add healtcheck

0 comments on commit 6c906fc

Please sign in to comment.