Skip to content

Commit

Permalink
fix: Switch from bitnami/redis to normal redis
Browse files Browse the repository at this point in the history
  • Loading branch information
andrasbacsai committed Apr 14, 2022
1 parent 260a47a commit 64c9fb9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 deletions.
4 changes: 1 addition & 3 deletions docker-compose-dev.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,8 @@ version: '3.8'

services:
redis:
image: 'bitnami/redis:6.2'
image: 'redis:6.2'
container_name: coolify-redis
environment:
- ALLOW_EMPTY_PASSWORD=yes
networks:
- coolify-infra
ports:
Expand Down
4 changes: 1 addition & 3 deletions docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,9 @@ services:
- coolify-infra
depends_on: ['redis']
redis:
image: bitnami/redis:6.2
image: redis:6.2
restart: always
container_name: coolify-redis
environment:
- ALLOW_EMPTY_PASSWORD=yes
networks:
- coolify-infra

Expand Down

0 comments on commit 64c9fb9

Please sign in to comment.