redis / Dockerfile
Fuegovic's picture
Update Dockerfile
7655bc8
raw
history blame
1.25 kB
# # Use the official Ubuntu 18.04 image as a base
# FROM ubuntu:18.04
# # Expose the default Redis port
# EXPOSE 7860
# # Update the system and install Redis
# RUN apt-get update && apt-get install -y redis-server
# RUN mkdir -p /etc/lib/redis
# RUN chmod -R 777 /etc/lib/redis
# COPY redis.conf /etc/redis/redis.conf
# # Run the Redis server as the main process with the configuration file
# CMD ["redis-server", "/etc/redis/redis.conf"]
# Pull base image.
FROM ubuntu
# Install Redis.
RUN \
cd /tmp && \
wget http://download.redis.io/redis-stable.tar.gz && \
tar xvzf redis-stable.tar.gz && \
cd redis-stable && \
make && \
make install && \
cp -f src/redis-sentinel /usr/local/bin && \
mkdir -p /etc/redis && \
cp -f *.conf /etc/redis && \
rm -rf /tmp/redis-stable* && \
sed -i 's/^\(bind .*\)$/# \1/' /etc/redis/redis.conf && \
sed -i 's/^\(daemonize .*\)$/# \1/' /etc/redis/redis.conf && \
sed -i 's/^\(dir .*\)$/# \1\ndir \/data/' /etc/redis/redis.conf && \
sed -i 's/^\(logfile .*\)$/# \1/' /etc/redis/redis.conf
# Define mountable directories.
VOLUME ["/data"]
# Define working directory.
WORKDIR /data
# Define default command.
CMD ["redis-server", "/etc/redis/redis.conf"]
# Expose ports.
EXPOSE 6379