Skip to content

Commit

Permalink
fix(docker): fix maxmemory flag in docker file for redis
Browse files Browse the repository at this point in the history
It was incorrectly set causing the container not to start.
  • Loading branch information
dtfiedler committed Nov 17, 2023
1 parent 8c458a4 commit fb63585
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ services:
image: redis:latest
command: redis-server --appendonly yes --maxmemory ${REDIS_MAX_MEMORY:-2gb}
ports:
- "6379:6379"
- 6379:6379
volumes:
- ${REDIS_DATA_PATH:-./data/redis}:/data

Expand Down

0 comments on commit fb63585

Please sign in to comment.