compose.yaml erneut hinzugefügt
This commit is contained in:
Executable
+22
@@ -0,0 +1,22 @@
|
||||
services:
|
||||
redis:
|
||||
image: redis:latest
|
||||
container_name: redis
|
||||
labels:
|
||||
- wud.watch=true
|
||||
restart: unless-stopped
|
||||
# command: redis-server --loglevel error
|
||||
deploy:
|
||||
resources:
|
||||
limits:
|
||||
memory: 256M
|
||||
ports:
|
||||
- 9379:6379
|
||||
volumes:
|
||||
- ./data:/data
|
||||
healthcheck:
|
||||
test: ["CMD-SHELL", "redis-cli ping || exit 1"]
|
||||
interval: 10s
|
||||
timeout: 5s
|
||||
retries: 3
|
||||
networks: {}
|
||||
Reference in New Issue
Block a user