1
.github/workflows/redis.yml
vendored
1
.github/workflows/redis.yml
vendored
@@ -19,6 +19,7 @@ jobs:
|
||||
tag:
|
||||
- 5
|
||||
- 6
|
||||
- 7
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- uses: docker/setup-qemu-action@v1
|
||||
|
@@ -93,7 +93,6 @@ is tagged correctly.
|
||||
* [`source`](/games/source)
|
||||
* `ghcr.io/parkervcp/games:source`
|
||||
|
||||
|
||||
### [Golang](/go)
|
||||
|
||||
* [`go1.14`](/go/1.14)
|
||||
@@ -121,6 +120,7 @@ is tagged correctly.
|
||||
* `ghcr.io/parkervcp/yolks:java_17`
|
||||
|
||||
### [MariaDB](/mariadb)
|
||||
|
||||
* [`MariaDB 10.3`](/mariadb/10.3)
|
||||
* `ghcr.io/parkervcp/yolks:mariadb_10.3`
|
||||
* [`MariaDB 10.4`](/mariadb/10.4)
|
||||
@@ -133,12 +133,14 @@ is tagged correctly.
|
||||
* `ghcr.io/parkervcp/yolks:mariadb_10.7`
|
||||
|
||||
### [MongoDB](/mongodb)
|
||||
|
||||
* [`MongoDB 4`](/mongodb/4)
|
||||
* `ghcr.io/parkervcp/yolks:mongodb_4`
|
||||
* [`MongoDB 5`](/mongodb/5)
|
||||
* `ghcr.io/parkervcp/yolks:mongodb_5`
|
||||
|
||||
### [Mono](/mono)
|
||||
|
||||
* [`mono_latest`](/mono/latest)
|
||||
* `ghcr.io/parkervcp/yolks:mono_latest`
|
||||
|
||||
@@ -156,6 +158,7 @@ is tagged correctly.
|
||||
* `ghcr.io/parkervcp/yolks:nodejs_18`
|
||||
|
||||
### [PostgreSQL](/postgres)
|
||||
|
||||
* [`Postgres 9`](/postgres/9)
|
||||
* `ghcr.io/parkervcp/yolks:postgres_9`
|
||||
* [`Postgres 10`](/postgres/10)
|
||||
@@ -181,10 +184,13 @@ is tagged correctly.
|
||||
* `ghcr.io/parkervcp/yolks:python_3.10`
|
||||
|
||||
### [Redis](/redis)
|
||||
|
||||
* [`Redis 5`](/redis/5)
|
||||
* `ghcr.io/parkervcp/yolks:redis_5`
|
||||
* [`Redis 6`](/redis/6)
|
||||
* `ghcr.io/parkervcp/yolks:redis_6`
|
||||
* [`Redis 7`](/redis/7)
|
||||
* `ghcr.io/parkervcp/yolks:redis_7`
|
||||
|
||||
### [Rust](/rust)
|
||||
|
||||
|
20
redis/7/Dockerfile
Normal file
20
redis/7/Dockerfile
Normal file
@@ -0,0 +1,20 @@
|
||||
# ----------------------------------
|
||||
# Environment: redis
|
||||
# ----------------------------------
|
||||
FROM --platform=$TARGETOS/$TARGETARCH redis:7-bullseye
|
||||
|
||||
LABEL author="Michael Parker" maintainer="parker@pterodactyl.io"
|
||||
|
||||
ENV DEBIAN_FRONTEND noninteractive
|
||||
|
||||
RUN apt -y update && \
|
||||
apt -y upgrade && \
|
||||
apt -y install iproute2 && \
|
||||
useradd -d /home/container -m container -s /bin/bash
|
||||
|
||||
USER container
|
||||
ENV USER=container HOME=/home/container
|
||||
WORKDIR /home/container
|
||||
|
||||
COPY ./entrypoint.sh /entrypoint.sh
|
||||
CMD ["/bin/bash", "/entrypoint.sh"]
|
Reference in New Issue
Block a user