mirror of
https://github.com/cedar2025/Xboard.git
synced 2025-01-23 02:58:14 -05:00
6 lines
157 B
Docker
6 lines
157 B
Docker
FROM redis:7-alpine
|
|
|
|
RUN mkdir -p /run/redis-socket && chmod 777 /run/redis-socket
|
|
COPY ./redis.conf /etc/redis.conf
|
|
CMD ["redis-server", "/etc/redis.conf"]
|