Skip to content

Commit

Permalink
feat: 升级 redis 版本到 7, postgres 版本到 14
Browse files Browse the repository at this point in the history
  • Loading branch information
icyleaf committed Feb 23, 2023
1 parent f7388a1 commit ea54752
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
caddy/
backups/
out/
certs/
log/
.env
*.yml
Expand Down
4 changes: 2 additions & 2 deletions templates/docker-compose/base.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,15 +27,15 @@ x-defaults: &defaults
services:
redis:
<<: *restart_policy
image: redis:5-alpine
image: redis:7-alpine
command: redis-server
volumes:
- zealot-redis:/var/lib/redis/data
healthcheck:
test: ["CMD", "redis-cli", "ping"]
postgres:
<<: *restart_policy
image: postgres:12-alpine
image: postgres:14-alpine
volumes:
- zealot-postgres:/var/lib/postgresql/data
environment:
Expand Down

0 comments on commit ea54752

Please sign in to comment.