Skip to content

Commit 0aeeab7

Browse files
Run update.sh (amd64 -- https://hub.docker.com/u/amd64/)
1 parent 966358c commit 0aeeab7

File tree

142 files changed

+1196
-1703
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

142 files changed

+1196
-1703
lines changed

adminer/README.md

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@ WARNING:
1414
1515
-->
1616

17+
**Note:** this is the "per-architecture" repository for the `amd64` builds of [the `adminer` official image](https://hub.docker.com/_/adminer) -- for more information, see ["Architectures other than amd64?" in the official images documentation](https://github.com/docker-library/official-images#architectures-other-than-amd64) and ["An image's source changed in Git, now what?" in the official images FAQ](https://github.com/docker-library/faq#an-images-source-changed-in-git-now-what).
18+
1719
# Quick reference
1820

1921
- **Maintained by**:
@@ -66,7 +68,7 @@ Adminer (formerly phpMinAdmin) is a full-featured database management tool writt
6668
### Standalone
6769

6870
```console
69-
$ docker run --link some_database:db -p 8080:8080 adminer
71+
$ docker run --link some_database:db -p 8080:8080 amd64/adminer
7072
```
7173

7274
Then you can hit `http://localhost:8080` or `http://host-ip:8080` in your browser.
@@ -76,7 +78,7 @@ Then you can hit `http://localhost:8080` or `http://host-ip:8080` in your browse
7678
If you are already running a FastCGI capable web server you might prefer running Adminer via FastCGI:
7779

7880
```console
79-
$ docker run --link some_database:db -p 9000:9000 adminer:fastcgi
81+
$ docker run --link some_database:db -p 9000:9000 amd64/adminer:fastcgi
8082
```
8183

8284
Then point your web server to port 9000 of the container.
@@ -114,13 +116,13 @@ This image bundles all official Adminer plugins. You can find the list of plugin
114116
To load plugins you can pass a list of filenames in `ADMINER_PLUGINS`:
115117

116118
```console
117-
$ docker run --link some_database:db -p 8080:8080 -e ADMINER_PLUGINS='tables-filter tinymce' adminer
119+
$ docker run --link some_database:db -p 8080:8080 -e ADMINER_PLUGINS='tables-filter tinymce' amd64/adminer
118120
```
119121

120122
If a plugin *requires* parameters to work correctly instead of adding the plugin to `ADMINER_PLUGINS`, you need to add a custom file to the container:
121123

122124
```console
123-
$ docker run --link some_database:db -p 8080:8080 -e ADMINER_PLUGINS='login-servers' adminer
125+
$ docker run --link some_database:db -p 8080:8080 -e ADMINER_PLUGINS='login-servers' amd64/adminer
124126
Unable to load plugin file "login-servers", because it has required parameters: servers
125127
Create a file "/var/www/html/plugins-enabled/login-servers.php" with the following contents to load the plugin:
126128
@@ -146,7 +148,7 @@ The image bundles all the designs that are available in the source package of ad
146148
To use a bundled design you can pass its name in `ADMINER_DESIGN`:
147149

148150
```console
149-
$ docker run --link some_database:db -p 8080:8080 -e ADMINER_DESIGN='nette' adminer
151+
$ docker run --link some_database:db -p 8080:8080 -e ADMINER_DESIGN='nette' amd64/adminer
150152
```
151153

152154
To use a custom design you can add a file called `/var/www/html/adminer.css`.
@@ -156,7 +158,7 @@ To use a custom design you can add a file called `/var/www/html/adminer.css`.
156158
You can specify the default host with the `ADMINER_DEFAULT_SERVER` environment variable. This is useful if you are connecting to an external server or a docker container named something other than the default `db`.
157159

158160
```console
159-
docker run -p 8080:8080 -e ADMINER_DEFAULT_SERVER=mysql adminer
161+
docker run -p 8080:8080 -e ADMINER_DEFAULT_SERVER=mysql amd64/adminer
160162
```
161163

162164
## Supported Drivers

aerospike/README.md

Lines changed: 11 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@ WARNING:
1414
1515
-->
1616

17+
**Note:** this is the "per-architecture" repository for the `amd64` builds of [the `aerospike` official image](https://hub.docker.com/_/aerospike) -- for more information, see ["Architectures other than amd64?" in the official images documentation](https://github.com/docker-library/official-images#architectures-other-than-amd64) and ["An image's source changed in Git, now what?" in the official images FAQ](https://github.com/docker-library/faq#an-images-source-changed-in-git-now-what).
18+
1719
# Quick reference
1820

1921
- **Maintained by**:
@@ -66,7 +68,7 @@ Aerospike Community Edition supports the same developer APIs as Aerospike Enterp
6668
### Running an Aerospike EE node with a feature key file in a mapped directory
6769

6870
```console
69-
docker run -d -v DIR:/opt/aerospike/etc/ -e "FEATURE_KEY_FILE=/opt/aerospike/etc/features.conf" --name aerospike -p 3000-3002:3000-3002 aerospike:ee-[version]
71+
docker run -d -v DIR:/opt/aerospike/etc/ -e "FEATURE_KEY_FILE=/opt/aerospike/etc/features.conf" --name aerospike -p 3000-3002:3000-3002 amd64/aerospike:ee-[version]
7072
```
7173

7274
Above, *DIR* is a directory on your machine where you drop your feature key file. Make sure Docker Desktop has file sharing permission to bind mount it into Docker containers.
@@ -75,13 +77,13 @@ Above, *DIR* is a directory on your machine where you drop your feature key file
7577

7678
```console
7779
FEATKEY=$(base64 ~/Desktop/evaluation-features.conf)
78-
docker run -d -e "FEATURES=$FEATKEY" -e "FEATURE_KEY_FILE=env-b64:FEATURES" --name aerospike -p 3000-3002:3000-3002 aerospike:ee-[version]
80+
docker run -d -e "FEATURES=$FEATKEY" -e "FEATURE_KEY_FILE=env-b64:FEATURES" --name aerospike -p 3000-3002:3000-3002 amd64/aerospike:ee-[version]
7981
```
8082

8183
### Running an Aerospike CE node
8284

8385
```console
84-
docker run -d --name aerospike -p 3000-3002:3000-3002 aerospike:ce-[version]
86+
docker run -d --name aerospike -p 3000-3002:3000-3002 amd64/aerospike:ce-[version]
8587
```
8688

8789
## Advanced Configuration
@@ -97,7 +99,7 @@ You can inject parameters into the configuration template using container-side e
9799
For example, to set the default [namespace](https://www.aerospike.com/docs/architecture/data-model.html) name to *demo*:
98100

99101
```console
100-
docker run -d --name aerospike -e "NAMESPACE=demo" -p 3000-3002:3000-3002 -v /my/dir:/opt/aerospike/etc/ -e "FEATURE_KEY_FILE=/opt/aerospike/etc/features.conf" aerospike:ee-[version]
102+
docker run -d --name aerospike -e "NAMESPACE=demo" -p 3000-3002:3000-3002 -v /my/dir:/opt/aerospike/etc/ -e "FEATURE_KEY_FILE=/opt/aerospike/etc/features.conf" amd64/aerospike:ee-[version]
101103
```
102104

103105
Injecting configuration parameters into the configuration template isn't compatible with using a custom configuration file. You can use one or the other.
@@ -132,7 +134,7 @@ You should first `-v` map a local directory, which Docker will bind mount. Next,
132134
For example:
133135

134136
```console
135-
docker run -d -v /opt/aerospike/etc/:/opt/aerospike/etc/ --name aerospike -p 3000-3002:3000-3002 aerospike:ee-[version] --config-file /opt/aerospike/etc/aerospike.conf
137+
docker run -d -v /opt/aerospike/etc/:/opt/aerospike/etc/ --name aerospike -p 3000-3002:3000-3002 amd64/aerospike:ee-[version] --config-file /opt/aerospike/etc/aerospike.conf
136138
```
137139

138140
### Persistent Data Directory
@@ -142,7 +144,7 @@ With Docker, the files within the container are not persisted past the life of t
142144
For example:
143145

144146
```console
145-
docker run -d -v /opt/aerospike/data:/opt/aerospike/data -v /opt/aerospike/etc:/opt/aerospike/etc/ --name aerospike -p 3000-3002:3000-3002 -e "FEATURE_KEY_FILE=/opt/aerospike/etc/features.conf" aerospike:ee-[version]
147+
docker run -d -v /opt/aerospike/data:/opt/aerospike/data -v /opt/aerospike/etc:/opt/aerospike/etc/ --name aerospike -p 3000-3002:3000-3002 -e "FEATURE_KEY_FILE=/opt/aerospike/etc/features.conf" amd64/aerospike:ee-[version]
146148
```
147149

148150
The example above uses the configuration template, where the single defined namespace is in-memory with file-based persistence. Just mounting the predefined /opt/aerospike/data directory enables the data to be persisted on the host.
@@ -161,7 +163,7 @@ Alternatively, a custom configuration file is used with the parameter `file` set
161163
In this example we also mount the data directory in a similar way, using a custom configuration file.
162164

163165
```console
164-
docker run -d -v /opt/aerospike/data:/opt/aerospike/data -v /opt/aerospike/etc/:/opt/aerospike/etc/ --name aerospike -p 3000-3002:3000-3002 aerospike:ee-[version] --config-file /opt/aerospike/etc/aerospike.conf
166+
docker run -d -v /opt/aerospike/data:/opt/aerospike/data -v /opt/aerospike/etc/:/opt/aerospike/etc/ --name aerospike -p 3000-3002:3000-3002 amd64/aerospike:ee-[version] --config-file /opt/aerospike/etc/aerospike.conf
165167
```
166168

167169
### Block Storage
@@ -181,15 +183,15 @@ Update the `storage-engine device` section of the namespace in the custom aerosp
181183
Now to map a host drive /dev/sdc to /dev/xvdc on a container
182184

183185
```console
184-
docker run -d --device '/dev/sdc:/dev/xvdc' -v /opt/aerospike/etc/:/opt/aerospike/etc/ --name aerospike -p 3000-3002:3000-3002 aerospike:ee-[version] --config-file /opt/aerospike/etc/aerospike.conf
186+
docker run -d --device '/dev/sdc:/dev/xvdc' -v /opt/aerospike/etc/:/opt/aerospike/etc/ --name aerospike -p 3000-3002:3000-3002 amd64/aerospike:ee-[version] --config-file /opt/aerospike/etc/aerospike.conf
185187
```
186188

187189
### Persistent Lua Cache
188190

189191
Upon restart, your lua cache will become emptied. To persist the cache, you will want to mount a directory from the host to the container's `/opt/aerospike/usr/udf/lua` using the `-v` option:
190192

191193
```sh
192-
docker run -d -v /opt/aerospike/lua:/opt/aerospike/usr/udf/lua -v /opt/aerospike/data:/opt/aerospike/data --name aerospike -p 3000-3002:3000-3002 -e "FEATURE_KEY_FILE=/opt/etc/aerospike/features.conf" aerospike:ee-[version]
194+
docker run -d -v /opt/aerospike/lua:/opt/aerospike/usr/udf/lua -v /opt/aerospike/data:/opt/aerospike/data --name aerospike -p 3000-3002:3000-3002 -e "FEATURE_KEY_FILE=/opt/etc/aerospike/features.conf" amd64/aerospike:ee-[version]
193195
```
194196

195197
## Clustering

almalinux/README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@ WARNING:
1414
1515
-->
1616

17+
**Note:** this is the "per-architecture" repository for the `amd64` builds of [the `almalinux` official image](https://hub.docker.com/_/almalinux) -- for more information, see ["Architectures other than amd64?" in the official images documentation](https://github.com/docker-library/official-images#architectures-other-than-amd64) and ["An image's source changed in Git, now what?" in the official images FAQ](https://github.com/docker-library/faq#an-images-source-changed-in-git-now-what).
18+
1719
# Quick reference
1820

1921
- **Maintained by**:
@@ -71,13 +73,13 @@ WARNING:
7173

7274
The default (platform) image is a general-purpose image with a full DNF stack and basic tools like find, tar, vi, etc.
7375

74-
The `almalinux:latest` tag will always point to the latest stable release of the default image. Major releases and minor releases are also tagged with their version (e.g. `almalinux:8` or `almalinux:8.4`).
76+
The `amd64/almalinux:latest` tag will always point to the latest stable release of the default image. Major releases and minor releases are also tagged with their version (e.g. `amd64/almalinux:8` or `amd64/almalinux:8.4`).
7577

7678
## Minimal image
7779

7880
The minimal image is a stripped-down image that uses the microdnf package manager and contains a very limited package set. It is designed for applications that come with their own dependencies bundled (e.g. NodeJS, Python).
7981

80-
The `almalinux:minimal` tag always points to the most recent version of the minimal image. Tags for major (e.g. `almalinux:8-minimal`) and minor (e.g. `almalinux:8.4-minimal`) releases are also available.
82+
The `amd64/almalinux:minimal` tag always points to the most recent version of the minimal image. Tags for major (e.g. `amd64/almalinux:8-minimal`) and minor (e.g. `amd64/almalinux:8.4-minimal`) releases are also available.
8183

8284
### Upgrade policy
8385

alpine/README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@ WARNING:
1414
1515
-->
1616

17+
**Note:** this is the "per-architecture" repository for the `amd64` builds of [the `alpine` official image](https://hub.docker.com/_/alpine) -- for more information, see ["Architectures other than amd64?" in the official images documentation](https://github.com/docker-library/official-images#architectures-other-than-amd64) and ["An image's source changed in Git, now what?" in the official images FAQ](https://github.com/docker-library/faq#an-images-source-changed-in-git-now-what).
18+
1719
# Quick reference
1820

1921
- **Maintained by**:
@@ -66,7 +68,7 @@ WARNING:
6668
Use like you would any other base image:
6769

6870
```dockerfile
69-
FROM alpine:3.14
71+
FROM amd64/alpine:3.14
7072
RUN apk add --no-cache mysql-client
7173
ENTRYPOINT ["mysql"]
7274
```

alt/README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@ WARNING:
1414
1515
-->
1616

17+
**Note:** this is the "per-architecture" repository for the `amd64` builds of [the `alt` official image](https://hub.docker.com/_/alt) -- for more information, see ["Architectures other than amd64?" in the official images documentation](https://github.com/docker-library/official-images#architectures-other-than-amd64) and ["An image's source changed in Git, now what?" in the official images FAQ](https://github.com/docker-library/faq#an-images-source-changed-in-git-now-what).
18+
1719
# Quick reference
1820

1921
- **Maintained by**:
@@ -73,7 +75,7 @@ As said above, Sisyphus is a frequently updated repository mainly designed for d
7375

7476
# About this image
7577

76-
The `alt:latest` tag will always point the latest stable release (which is, at the time of this writing, `alt:p9`).
78+
The `amd64/alt:latest` tag will always point the latest stable release (which is, at the time of this writing, `amd64/alt:p9`).
7779

7880
## How It's Made
7981

amazoncorretto/README.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@ WARNING:
1414
1515
-->
1616

17+
**Note:** this is the "per-architecture" repository for the `amd64` builds of [the `amazoncorretto` official image](https://hub.docker.com/_/amazoncorretto) -- for more information, see ["Architectures other than amd64?" in the official images documentation](https://github.com/docker-library/official-images#architectures-other-than-amd64) and ["An image's source changed in Git, now what?" in the official images FAQ](https://github.com/docker-library/faq#an-images-source-changed-in-git-now-what).
18+
1719
# Quick reference
1820

1921
- **Maintained by**:
@@ -171,13 +173,13 @@ Note that there are multiple reasons why a CVE may appear to be present in a doc
171173

172174
# Image Variants
173175

174-
The `amazoncorretto` images come in many flavors, each designed for a specific use case.
176+
The `amd64/amazoncorretto` images come in many flavors, each designed for a specific use case.
175177

176-
## `amazoncorretto:<version>`
178+
## `amd64/amazoncorretto:<version>`
177179

178180
This is the defacto image. If you are unsure about what your needs are, you probably want to use this one. It is designed to be used both as a throw away container (mount your source code and start the container to start your app), as well as the base to build other images off of.
179181

180-
## `amazoncorretto:<version>-alpine`
182+
## `amd64/amazoncorretto:<version>-alpine`
181183

182184
This image is based on the popular [Alpine Linux project](https://alpinelinux.org), available in [the `alpine` official image](https://hub.docker.com/_/alpine). Alpine Linux is much smaller than most distribution base images (~5MB), and thus leads to much slimmer images in general.
183185

amazonlinux/README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@ WARNING:
1414
1515
-->
1616

17+
**Note:** this is the "per-architecture" repository for the `amd64` builds of [the `amazonlinux` official image](https://hub.docker.com/_/amazonlinux) -- for more information, see ["Architectures other than amd64?" in the official images documentation](https://github.com/docker-library/official-images#architectures-other-than-amd64) and ["An image's source changed in Git, now what?" in the official images FAQ](https://github.com/docker-library/faq#an-images-source-changed-in-git-now-what).
18+
1719
# Quick reference
1820

1921
- **Maintained by**:

api-firewall/README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@ WARNING:
1414
1515
-->
1616

17+
**Note:** this is the "per-architecture" repository for the `amd64` builds of [the `api-firewall` official image](https://hub.docker.com/_/api-firewall) -- for more information, see ["Architectures other than amd64?" in the official images documentation](https://github.com/docker-library/official-images#architectures-other-than-amd64) and ["An image's source changed in Git, now what?" in the official images FAQ](https://github.com/docker-library/faq#an-images-source-changed-in-git-now-what).
18+
1719
# Quick reference
1820

1921
- **Maintained by**:

0 commit comments

Comments
 (0)