Skip to content

Commit

Permalink
Added Redis via Docker
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 Apr 24, 2024
1 parent 9f19e33 commit 88717a4
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/scripts/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,3 +21,9 @@ services:
test: "mysql -uroot -proot ghost -e 'select 1'"
interval: 1s
retries: 120
redis:
image: redis:7.2
container_name: ghost-redis
ports:
- "6379:6379"
restart: always

0 comments on commit 88717a4

Please sign in to comment.