Skip to content
This repository has been archived by the owner on Oct 22, 2021. It is now read-only.

Commit

Permalink
Merge pull request #15 from actions/redis-server
Browse files Browse the repository at this point in the history
Adding redis-server entrypoint
  • Loading branch information
chrispat authored Oct 16, 2019
2 parents 77b2ed9 + 7d29c7a commit 7262fc5
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/redis-service.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ jobs:
image: redis
ports:
- 6379:6379
options: --entrypoint redis-server

steps:
- uses: actions/checkout@v1
Expand All @@ -41,6 +42,7 @@ jobs:
image: redis
ports:
- 6379/tcp
options: --entrypoint redis-server

steps:
- uses: actions/checkout@v1
Expand All @@ -52,4 +54,4 @@ jobs:
working-directory: ./redis
env:
REDIS_HOST: localhost
REDIS_PORT: ${{ job.services.redis.ports[6379] }}
REDIS_PORT: ${{ job.services.redis.ports[6379] }}

0 comments on commit 7262fc5

Please sign in to comment.