Remove storing redis data on host

This commit is contained in:
Jake Spain 2023-10-20 12:08:56 -04:00
parent 4fd3b39ef0
commit 1d2f93fc1c
No known key found for this signature in database
GPG key ID: BC1C4DA0A085E113
4 changed files with 0 additions and 10 deletions

2
.gitignore vendored
View file

@ -4,5 +4,3 @@
.vagrant/ .vagrant/
.idea/ .idea/
helm-charts/vmpooler/charts/ helm-charts/vmpooler/charts/
/docker/data/redis/**
!docker/data/**/.gitkeep

View file

@ -5,10 +5,6 @@ services:
# This should match the major version used in the vmpooler helm chart # This should match the major version used in the vmpooler helm chart
image: redis:6 image: redis:6
command: "redis-server --requirepass vmpooler" command: "redis-server --requirepass vmpooler"
volumes:
- type: bind
source: ./data/redis
target: /data
ports: ports:
- "6379:6379" - "6379:6379"

View file

@ -5,10 +5,6 @@ services:
# This should match the major version used in the vmpooler helm chart # This should match the major version used in the vmpooler helm chart
image: redis:6 image: redis:6
command: "redis-server --requirepass vmpooler" command: "redis-server --requirepass vmpooler"
volumes:
- type: bind
source: ./data/redis
target: /data
ports: ports:
- "6379:6379" - "6379:6379"