-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathDockerfile.fedora
85 lines (72 loc) · 3.71 KB
/
Dockerfile.fedora
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
FROM quay.io/fedora/s2i-core:40
# Valkey image based on Software Collections packages
#
# Volumes:
# * /var/lib/valkey/data - Datastore for Valkey
# Environment:
# * $VALKEY_PASSWORD - Database password
ENV VALKEY_VERSION=7 \
HOME=/var/lib/valkey \
NAME=valkey
ENV SUMMARY="Valkey in-memory data structure store, used as database, cache and message broker" \
DESCRIPTION="Valkey $VALKEY_VERSION available as container, is an advanced key-value store. \
It is often referred to as a data structure server since keys can contain strings, hashes, lists, \
sets and sorted sets. You can run atomic operations on these types, like appending to a string; \
incrementing the value in a hash; pushing to a list; computing set intersection, union and difference; \
or getting the member with highest ranking in a sorted set. In order to achieve its outstanding \
performance, Valkey works with an in-memory dataset. Depending on your use case, you can persist \
it either by dumping the dataset to disk every once in a while, or by appending each command to a log."
LABEL summary="$SUMMARY" \
description="$DESCRIPTION" \
io.k8s.description="$DESCRIPTION" \
io.k8s.display-name="Valkey $VALKEY_VERSION" \
io.openshift.expose-services="6379:valkey" \
io.openshift.tags="database,valkey,valkey$VALKEY_VERSION,valkey-$VALKEY_VERSION" \
com.redhat.component="$NAME" \
name="fedora/$NAME-$VALKEY_VERSION" \
version="$VALKEY_VERSION" \
usage="podman run -d --name valkey_database -p 6379:6379 quay.io/fedora/$NAME-$VALKEY_VERSION" \
maintainer="SoftwareCollections.org <[email protected]>"
EXPOSE 6379
# Get prefix path and path to scripts rather than hard-code them in scripts
ENV CONTAINER_SCRIPTS_PATH=/usr/share/container-scripts/valkey \
VALKEY_PREFIX=/usr \
VALKEY_CONF=/etc/valkey/valkey.conf \
VALKEY_SOCK=/run/valkey/valkey.sock \
VALKEY_LIB=/var/lib/valkey \
VALKEY_RUN=/run/valkey
# Create user for valkey that has known UID
# We need to do this before installing the RPMs which would create user with random UID
# The UID is the one used by the default user from the parent layer (1001),
# and since the user exists already, do not create a new one, but only rename
# the existing
# This image must forever use UID 1001 for valkey user so our volumes are
# safe in the future. This should *never* change, the last test is there
# to make sure of that.
RUN getent group valkey &> /dev/null || groupadd -r valkey &> /dev/null && \
usermod -l valkey -aG valkey -c 'Server' default &> /dev/null && \
# Install gettext for envsubst command
dnf install -y dnf-utils gettext policycoreutils && \
INSTALL_PKGS="valkey" && \
dnf install -y --setopt=tsflags=nodocs --nogpgcheck $INSTALL_PKGS && \
rpm -V $INSTALL_PKGS && \
dnf -y clean all --enablerepo='*' && \
valkey-server --version | grep -qe "^Server v=$VALKEY_VERSION\." && echo "Found VERSION $VALKEY_VERSION" && \
mkdir -p $VALKEY_LIB/data && chown -R valkey:0 $VALKEY_LIB && \
mkdir -p $VALKEY_RUN && chown -R valkey:0 $VALKEY_RUN && \
chmod -R ug+rwX $VALKEY_RUN && \
chmod -R ug+rwX $VALKEY_LIB && \
[[ "$(id valkey)" == "uid=1001(valkey)"* ]]
COPY root /
# this is needed due to issues with squash
# when this directory gets rm'd by the container-setup
# script.
RUN /usr/libexec/container-setup
VOLUME ["/var/lib/valkey/data"]
# Using a numeric value because of a comment in [1]:
# If your S2I image does not include a USER declaration with a numeric user,
# your builds will fail by default.
# [1] https://docs.openshift.com/container-platform/4.4/openshift_images/create-images.html#images-create-guide-openshift_create-images
USER 1001
ENTRYPOINT ["container-entrypoint"]
CMD ["run-valkey"]