You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: adminer/README.md
+8-6Lines changed: 8 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -14,6 +14,8 @@ WARNING:
14
14
15
15
-->
16
16
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
+
17
19
# Quick reference
18
20
19
21
-**Maintained by**:
@@ -66,7 +68,7 @@ Adminer (formerly phpMinAdmin) is a full-featured database management tool writt
66
68
### Standalone
67
69
68
70
```console
69
-
$ docker run --link some_database:db -p 8080:8080 adminer
71
+
$ docker run --link some_database:db -p 8080:8080 amd64/adminer
70
72
```
71
73
72
74
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
76
78
If you are already running a FastCGI capable web server you might prefer running Adminer via FastCGI:
77
79
78
80
```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
80
82
```
81
83
82
84
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
114
116
To load plugins you can pass a list of filenames in `ADMINER_PLUGINS`:
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:
121
123
122
124
```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
124
126
Unable to load plugin file "login-servers", because it has required parameters: servers
125
127
Create a file "/var/www/html/plugins-enabled/login-servers.php" with the following contents to load the plugin:
126
128
@@ -146,7 +148,7 @@ The image bundles all the designs that are available in the source package of ad
146
148
To use a bundled design you can pass its name in `ADMINER_DESIGN`:
147
149
148
150
```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
150
152
```
151
153
152
154
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`.
156
158
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`.
157
159
158
160
```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
Copy file name to clipboardExpand all lines: aerospike/README.md
+11-9Lines changed: 11 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -14,6 +14,8 @@ WARNING:
14
14
15
15
-->
16
16
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
+
17
19
# Quick reference
18
20
19
21
-**Maintained by**:
@@ -66,7 +68,7 @@ Aerospike Community Edition supports the same developer APIs as Aerospike Enterp
66
68
### Running an Aerospike EE node with a feature key file in a mapped directory
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
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,
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
161
163
In this example we also mount the data directory in a similar way, using a custom configuration file.
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:
Copy file name to clipboardExpand all lines: almalinux/README.md
+4-2Lines changed: 4 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -14,6 +14,8 @@ WARNING:
14
14
15
15
-->
16
16
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
+
17
19
# Quick reference
18
20
19
21
-**Maintained by**:
@@ -71,13 +73,13 @@ WARNING:
71
73
72
74
The default (platform) image is a general-purpose image with a full DNF stack and basic tools like find, tar, vi, etc.
73
75
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`).
75
77
76
78
## Minimal image
77
79
78
80
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).
79
81
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.
Copy file name to clipboardExpand all lines: alpine/README.md
+3-1Lines changed: 3 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -14,6 +14,8 @@ WARNING:
14
14
15
15
-->
16
16
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).
Copy file name to clipboardExpand all lines: alt/README.md
+3-1Lines changed: 3 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -14,6 +14,8 @@ WARNING:
14
14
15
15
-->
16
16
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
+
17
19
# Quick reference
18
20
19
21
-**Maintained by**:
@@ -73,7 +75,7 @@ As said above, Sisyphus is a frequently updated repository mainly designed for d
73
75
74
76
# About this image
75
77
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`).
Copy file name to clipboardExpand all lines: amazoncorretto/README.md
+5-3Lines changed: 5 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -14,6 +14,8 @@ WARNING:
14
14
15
15
-->
16
16
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
+
17
19
# Quick reference
18
20
19
21
-**Maintained by**:
@@ -171,13 +173,13 @@ Note that there are multiple reasons why a CVE may appear to be present in a doc
171
173
172
174
# Image Variants
173
175
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.
175
177
176
-
## `amazoncorretto:<version>`
178
+
## `amd64/amazoncorretto:<version>`
177
179
178
180
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.
179
181
180
-
## `amazoncorretto:<version>-alpine`
182
+
## `amd64/amazoncorretto:<version>-alpine`
181
183
182
184
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.
Copy file name to clipboardExpand all lines: amazonlinux/README.md
+2Lines changed: 2 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -14,6 +14,8 @@ WARNING:
14
14
15
15
-->
16
16
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).
Copy file name to clipboardExpand all lines: api-firewall/README.md
+2Lines changed: 2 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -14,6 +14,8 @@ WARNING:
14
14
15
15
-->
16
16
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).
0 commit comments