add docker version

This commit is contained in:
Ludovic CANDELLIER
2023-09-13 23:04:55 +02:00
parent 5f215cef81
commit bc7880b242
53 changed files with 24012 additions and 0 deletions

14
docker/redis/Dockerfile Normal file
View File

@@ -0,0 +1,14 @@
FROM redis:latest
LABEL maintainer="Ludovic CANDELLIER <ludo@huma.net>"
## For security settings uncomment, make the dir, copy conf, and also start with the conf, to use it
RUN mkdir -p /usr/local/etc/redis
COPY redis.conf /usr/local/etc/redis/redis.conf
VOLUME /data
EXPOSE 6379
CMD ["redis-server", "/usr/local/etc/redis/redis.conf"]
# CMD ["redis-server"]

1377
docker/redis/redis.conf Normal file

File diff suppressed because it is too large Load Diff