Add a redis cache to gitea

This commit is contained in:
Jake Howard
2020-05-19 21:49:09 +01:00
parent e93dbf2ecf
commit c0c396f008
2 changed files with 19 additions and 3 deletions

View File

@ -21,6 +21,12 @@ services:
- /etc/timezone:/etc/timezone:ro
- /etc/localtime:/etc/localtime:ro
redis:
image: redis:5-alpine
restart: unless-stopped
volumes:
- ./redis:/data
db:
image: postgres:12-alpine
restart: unless-stopped