added files

This commit is contained in:
Debian
2024-01-30 01:27:43 +00:00
commit 0cf3a16d11
2 changed files with 12 additions and 0 deletions

View File

@@ -0,0 +1,3 @@
docker build -t repo.aknlw.com/akanealw/<name> .
docker push repo.aknlw.com/akanealw/<name>:latest

9
redis/Dockerfile Normal file
View File

@@ -0,0 +1,9 @@
FROM ubuntu:18.04
RUN apt-get update && \
apt-get install -y redis-server && \
apt-get clean
EXPOSE 6379
CMD ["redis-server", "--protected-mode no"]