mirror of
https://github.com/dominikhoebert/docker-projects.git
synced 2025-06-27 16:57:05 +00:00
added redis
This commit is contained in:
parent
2956d02924
commit
f8e7ff5f8f
@ -72,7 +72,7 @@ docker network create --driver bridge proxy
|
|||||||
- netalertx 20211 test on windows
|
- netalertx 20211 test on windows
|
||||||
- netdata 19999 test on windows
|
- netdata 19999 test on windows
|
||||||
- stirlingpdf 8092
|
- stirlingpdf 8092
|
||||||
- redis
|
- redis 6379
|
||||||
- tinyfilemanager
|
- tinyfilemanager
|
||||||
- vaultwarden
|
- vaultwarden
|
||||||
- cyberchef
|
- cyberchef
|
||||||
@ -82,6 +82,13 @@ docker network create --driver bridge proxy
|
|||||||
- heimdall
|
- heimdall
|
||||||
- homer
|
- homer
|
||||||
- pihole
|
- pihole
|
||||||
|
- https://github.com/claabs/epicgames-freegames-node
|
||||||
|
- https://github.com/vogler/free-games-claimer
|
||||||
|
- https://about.gitea.com/
|
||||||
|
- https://www.navidrome.org/
|
||||||
|
- https://github.com/linuxserver/docker-webtop
|
||||||
|
- https://www.kasmweb.com/
|
||||||
|
- https://tailscale.com/
|
||||||
|
|
||||||
### Übung
|
### Übung
|
||||||
|
|
||||||
|
26
redis/compose.yml
Normal file
26
redis/compose.yml
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
# https://redis.io/
|
||||||
|
|
||||||
|
# fast, open source, in-memory data structure store that can also be used as a document or vector database
|
||||||
|
|
||||||
|
name: redis
|
||||||
|
|
||||||
|
services:
|
||||||
|
redis:
|
||||||
|
image: docker.io/library/redis:7.2.5
|
||||||
|
container_name: redis
|
||||||
|
command: --save 60 1 --loglevel warning
|
||||||
|
healthcheck:
|
||||||
|
test: [ "CMD-SHELL", "redis-cli ping | grep PONG" ]
|
||||||
|
start_period: 20s
|
||||||
|
interval: 30s
|
||||||
|
retries: 5
|
||||||
|
timeout: 3s
|
||||||
|
ports:
|
||||||
|
- 6379:6379
|
||||||
|
networks:
|
||||||
|
- proxy
|
||||||
|
|
||||||
|
networks:
|
||||||
|
proxy:
|
||||||
|
external: true
|
||||||
|
|
Loading…
x
Reference in New Issue
Block a user