Skip to content

Commit

Permalink
Added Redis via Docker (#20085)
Browse files Browse the repository at this point in the history
no refs

Redis can be utilised for various caching purposes within Ghost. This PR
adds a Redis service to the docker-compose file to allow for easier
local development when Redis is required
  • Loading branch information
mike182uk committed May 7, 2024
1 parent dccb4ac commit af92297
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/scripts/docker-compose.yml
Expand Up @@ -21,3 +21,9 @@ services:
test: "mysql -uroot -proot ghost -e 'select 1'"
interval: 1s
retries: 120
redis:
image: redis:7.0
container_name: ghost-redis
ports:
- "6379:6379"
restart: always

0 comments on commit af92297

Please sign in to comment.