[bitnami/dex] Release 2.33.0-debian-11-r0 (#1064)
Signed-off-by: Bitnami Containers <bitnami-bot@vmware.com>
This commit is contained in:
parent
d91ca0f17e
commit
d1e3b6f06b
|
|
@ -8,15 +8,15 @@ COPY prebuildfs /
|
|||
SHELL ["/bin/bash", "-o", "pipefail", "-c"]
|
||||
# Install required system packages and dependencies
|
||||
RUN install_packages ca-certificates curl gzip procps tar wget
|
||||
RUN wget -nc -P /tmp/bitnami/pkg/cache/ https://downloads.bitnami.com/files/stacksmith/dex-2.32.0-151-linux-amd64-debian-11.tar.gz && \
|
||||
echo "c5720966284c46958c7b803d891b49f20db1f9e407d4605b2b57a7e4728abf91 /tmp/bitnami/pkg/cache/dex-2.32.0-151-linux-amd64-debian-11.tar.gz" | sha256sum -c - && \
|
||||
tar -zxf /tmp/bitnami/pkg/cache/dex-2.32.0-151-linux-amd64-debian-11.tar.gz -P --transform 's|^[^/]*/files|/opt/bitnami|' --wildcards '*/files' && \
|
||||
rm -rf /tmp/bitnami/pkg/cache/dex-2.32.0-151-linux-amd64-debian-11.tar.gz
|
||||
RUN wget -nc -P /tmp/bitnami/pkg/cache/ https://downloads.bitnami.com/files/stacksmith/dex-2.33.0-0-linux-amd64-debian-11.tar.gz && \
|
||||
echo "23d8a8bf57e3cd0d22c990c6eefb59700a52a310eda865ace60f202ada585627 /tmp/bitnami/pkg/cache/dex-2.33.0-0-linux-amd64-debian-11.tar.gz" | sha256sum -c - && \
|
||||
tar -zxf /tmp/bitnami/pkg/cache/dex-2.33.0-0-linux-amd64-debian-11.tar.gz -P --transform 's|^[^/]*/files|/opt/bitnami|' --wildcards '*/files' && \
|
||||
rm -rf /tmp/bitnami/pkg/cache/dex-2.33.0-0-linux-amd64-debian-11.tar.gz
|
||||
RUN apt-get update && apt-get upgrade -y && \
|
||||
rm -r /var/lib/apt/lists /var/cache/apt/archives
|
||||
RUN useradd -r -u 1001 -g root dex
|
||||
|
||||
ENV APP_VERSION="2.32.0" \
|
||||
ENV APP_VERSION="2.33.0" \
|
||||
BITNAMI_APP_NAME="dex" \
|
||||
DEX_FRONTEND_DIR="/opt/bitnami/dex/web" \
|
||||
PATH="/opt/bitnami/dex/bin:$PATH"
|
||||
|
|
|
|||
|
|
@ -1,9 +1,9 @@
|
|||
{
|
||||
"dex": {
|
||||
"arch": "amd64",
|
||||
"digest": "c5720966284c46958c7b803d891b49f20db1f9e407d4605b2b57a7e4728abf91",
|
||||
"digest": "23d8a8bf57e3cd0d22c990c6eefb59700a52a310eda865ace60f202ada585627",
|
||||
"distro": "debian-11",
|
||||
"type": "NAMI",
|
||||
"version": "2.32.0-151"
|
||||
"version": "2.33.0-0"
|
||||
}
|
||||
}
|
||||
|
|
@ -17,7 +17,7 @@ $ docker run -it --name dex bitnami/dex
|
|||
### Docker Compose
|
||||
|
||||
```console
|
||||
$ curl -sSL https://raw.githubusercontent.com/bitnami/bitnami-docker-dex/master/docker-compose.yml > docker-compose.yml
|
||||
$ curl -sSL https://raw.githubusercontent.com/bitnami/containers/main/bitnami/dex/docker-compose.yml > docker-compose.yml
|
||||
$ docker-compose up -d
|
||||
```
|
||||
|
||||
|
|
@ -35,9 +35,9 @@ $ docker-compose up -d
|
|||
Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/).
|
||||
|
||||
|
||||
* [`2`, `2-debian-11`, `2.32.0`, `2.32.0-debian-11-r19`, `latest` (2/debian-11/Dockerfile)](https://github.com/bitnami/bitnami-docker-dex/blob/2.32.0-debian-11-r19/2/debian-11/ Dockerfile)
|
||||
* [`2`, `2-debian-11`, `2.33.0`, `2.33.0-debian-11-r0`, `latest` (2/debian-11/Dockerfile)](https://github.com/bitnami/containers/blob/main/bitnami/dex/2/debian-11/ Dockerfile)
|
||||
|
||||
Subscribe to project updates by watching the [bitnami/dex GitHub repo](https://github.com/bitnami/bitnami-docker-dex).
|
||||
Subscribe to project updates by watching the [bitnami/containers GitHub repo](https://github.com/bitnami/containers).
|
||||
|
||||
## Get this image
|
||||
|
||||
|
|
@ -53,10 +53,12 @@ To use a specific version, you can pull a versioned tag. You can view the [list
|
|||
$ docker pull bitnami/dex:[TAG]
|
||||
```
|
||||
|
||||
If you wish, you can also build the image yourself.
|
||||
If you wish, you can also build the image yourself by cloning the repository, changing to the directory containing the Dockerfile and executing the `docker build` command. Remember to replace the `APP`, `VERSION` and `OPERATING-SYSTEM` path placeholders in the example command below with the correct values.
|
||||
|
||||
```console
|
||||
$ docker build -t bitnami/dex:latest 'https://github.com/bitnami/bitnami-docker-dex.git#master:2/debian-11'
|
||||
$ git clone https://github.com/bitnami/containers.git
|
||||
$ cd bitnami/APP/VERSION/OPERATING-SYSTEM
|
||||
$ docker build -t bitnami/APP:latest .
|
||||
```
|
||||
|
||||
## Maintenance
|
||||
|
|
@ -113,18 +115,11 @@ Check the [official Dex documentation](https://dexidp.io/docs/) for more informa
|
|||
|
||||
## Contributing
|
||||
|
||||
We'd love for you to contribute to this Docker image. You can request new features by creating an [issue](https://github.com/bitnami/bitnami-docker-dex/issues), or submit a [pull request](https://github.com/bitnami/bitnami-docker-dex/pulls) with your contribution.
|
||||
We'd love for you to contribute to this Docker image. You can request new features by creating an [issue](https://github.com/bitnami/containers/issues), or submit a [pull request](https://github.com/bitnami/containers/pulls) with your contribution.
|
||||
|
||||
## Issues
|
||||
|
||||
If you encountered a problem running this container, you can file an [issue](https://github.com/bitnami/bitnami-docker-dex/issues/new). For us to provide better support, be sure to include the following information in your issue:
|
||||
|
||||
- Host OS and version
|
||||
- Docker version (`docker version`)
|
||||
- Output of `docker info`
|
||||
- Version of this container
|
||||
- The command you used to run the container, and any relevant output you saw (masking any sensitive
|
||||
information)
|
||||
If you encountered a problem running this container, you can file an [issue](https://github.com/bitnami/containers/issues/new/choose). For us to provide better support, be sure to fill the issue template.
|
||||
|
||||
## License
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue