Skip to content

Commit

Permalink
Run update.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
docker-library-bot committed Oct 18, 2023
1 parent 7fd17fa commit 39e45f7
Show file tree
Hide file tree
Showing 5 changed files with 57 additions and 47 deletions.
4 changes: 2 additions & 2 deletions aerospike/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ WARNING:

# Supported tags and respective `Dockerfile` links

- [`ee-6.4.0.4`, `ee-6.4.0.4_1`](https://github.com/aerospike/aerospike-server.docker/blob/5e912d28d7309d62449f0b490342a99a427a1e3e/enterprise/debian12/Dockerfile)
- [`ce-6.4.0.4`, `ce-6.4.0.4_1`](https://github.com/aerospike/aerospike-server.docker/blob/5e912d28d7309d62449f0b490342a99a427a1e3e/community/debian12/Dockerfile)
- [`ee-6.4.0.6`, `ee-6.4.0.6_1`](https://github.com/aerospike/aerospike-server.docker/blob/3c9c0d2bab5c67df7bf4abab4c21e13e3b64d8d2/enterprise/debian12/Dockerfile)
- [`ce-6.4.0.6`, `ce-6.4.0.6_1`](https://github.com/aerospike/aerospike-server.docker/blob/3c9c0d2bab5c67df7bf4abab4c21e13e3b64d8d2/community/debian12/Dockerfile)

# Quick reference (cont.)

Expand Down
12 changes: 11 additions & 1 deletion caddy/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ $ docker run -d -p 80:80 \
The default `Caddyfile` only listens to port `80`, and does not set up automatic TLS. However, if you have a domain name for your site, and its A/AAAA DNS records are properly pointed to this machine's public IP, then you can use this command to simply serve a site over HTTPS:

```console
$ docker run -d -p 80:80 -p 443:443 -p 443:443/udp \
$ docker run -d --cap-add=NET_ADMIN -p 80:80 -p 443:443 -p 443:443/udp \
-v /site:/srv \
-v caddy_data:/data \
-v caddy_config:/config \
Expand Down Expand Up @@ -179,6 +179,14 @@ $ caddy_container_id=$(docker ps | grep caddy | awk '{print $1;}')
$ docker exec -w /etc/caddy $caddy_container_id caddy reload
```

### Linux capabilities

Caddy ships with HTTP/3 support enabled by default. To improve the performance of this UDP based protocol, the underlying quic-go library tries to increase the buffer sizes for its socket. The `NET_ADMIN` capability allows it to override the low default limits of the operating system without having to change kernel parameters via sysctl.

Giving the container this capability is optional and has potential, though unlikely, to have [security implications](https://unix.stackexchange.com/a/508816).

See https://github.com/quic-go/quic-go/wiki/UDP-Buffer-Sizes for more details.

### Docker Compose example

If you prefer to use `docker-compose` to run your stack, here's a sample service definition.
Expand All @@ -190,6 +198,8 @@ services:
caddy:
image: caddy:<version>
restart: unless-stopped
cap_add:
- NET_ADMIN
ports:
- "80:80"
- "443:443"
Expand Down
32 changes: 16 additions & 16 deletions influxdb/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,22 +24,22 @@ WARNING:

# Supported tags and respective `Dockerfile` links

- [`1.8`, `1.8.10`](https://github.com/influxdata/influxdata-docker/blob/0e29baf2778d6660fcd407ed94288a6a7415fb05/influxdb/1.8/Dockerfile)
- [`1.8-alpine`, `1.8.10-alpine`](https://github.com/influxdata/influxdata-docker/blob/0e29baf2778d6660fcd407ed94288a6a7415fb05/influxdb/1.8/alpine/Dockerfile)
- [`1.9-data`, `1.9.12-data`](https://github.com/influxdata/influxdata-docker/blob/0e29baf2778d6660fcd407ed94288a6a7415fb05/influxdb/1.9/data/Dockerfile)
- [`1.9-data-alpine`, `1.9.12-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/0e29baf2778d6660fcd407ed94288a6a7415fb05/influxdb/1.9/data/alpine/Dockerfile)
- [`1.9-meta`, `1.9.12-meta`](https://github.com/influxdata/influxdata-docker/blob/0e29baf2778d6660fcd407ed94288a6a7415fb05/influxdb/1.9/meta/Dockerfile)
- [`1.9-meta-alpine`, `1.9.12-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/0e29baf2778d6660fcd407ed94288a6a7415fb05/influxdb/1.9/meta/alpine/Dockerfile)
- [`1.10-data`, `1.10.4-data`](https://github.com/influxdata/influxdata-docker/blob/0e29baf2778d6660fcd407ed94288a6a7415fb05/influxdb/1.10/data/Dockerfile)
- [`1.10-data-alpine`, `1.10.4-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/0e29baf2778d6660fcd407ed94288a6a7415fb05/influxdb/1.10/data/alpine/Dockerfile)
- [`1.10-meta`, `1.10.4-meta`](https://github.com/influxdata/influxdata-docker/blob/0e29baf2778d6660fcd407ed94288a6a7415fb05/influxdb/1.10/meta/Dockerfile)
- [`1.10-meta-alpine`, `1.10.4-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/0e29baf2778d6660fcd407ed94288a6a7415fb05/influxdb/1.10/meta/alpine/Dockerfile)
- [`1.11-data`, `1.11.3-data`](https://github.com/influxdata/influxdata-docker/blob/0e29baf2778d6660fcd407ed94288a6a7415fb05/influxdb/1.11/data/Dockerfile)
- [`1.11-data-alpine`, `1.11.3-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/0e29baf2778d6660fcd407ed94288a6a7415fb05/influxdb/1.11/data/alpine/Dockerfile)
- [`1.11-meta`, `1.11.3-meta`](https://github.com/influxdata/influxdata-docker/blob/0e29baf2778d6660fcd407ed94288a6a7415fb05/influxdb/1.11/meta/Dockerfile)
- [`1.11-meta-alpine`, `1.11.3-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/0e29baf2778d6660fcd407ed94288a6a7415fb05/influxdb/1.11/meta/alpine/Dockerfile)
- [`2.7`, `2.7.1`, `latest`](https://github.com/influxdata/influxdata-docker/blob/0e29baf2778d6660fcd407ed94288a6a7415fb05/influxdb/2.7/Dockerfile)
- [`2.7-alpine`, `2.7.1-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/0e29baf2778d6660fcd407ed94288a6a7415fb05/influxdb/2.7/alpine/Dockerfile)
- [`1.8`, `1.8.10`](https://github.com/influxdata/influxdata-docker/blob/aa7d2dd5fc23d7df809088de7d19d58aa39e4978/influxdb/1.8/Dockerfile)
- [`1.8-alpine`, `1.8.10-alpine`](https://github.com/influxdata/influxdata-docker/blob/aa7d2dd5fc23d7df809088de7d19d58aa39e4978/influxdb/1.8/alpine/Dockerfile)
- [`1.9-data`, `1.9.13-data`](https://github.com/influxdata/influxdata-docker/blob/aa7d2dd5fc23d7df809088de7d19d58aa39e4978/influxdb/1.9/data/Dockerfile)
- [`1.9-data-alpine`, `1.9.13-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/aa7d2dd5fc23d7df809088de7d19d58aa39e4978/influxdb/1.9/data/alpine/Dockerfile)
- [`1.9-meta`, `1.9.13-meta`](https://github.com/influxdata/influxdata-docker/blob/aa7d2dd5fc23d7df809088de7d19d58aa39e4978/influxdb/1.9/meta/Dockerfile)
- [`1.9-meta-alpine`, `1.9.13-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/aa7d2dd5fc23d7df809088de7d19d58aa39e4978/influxdb/1.9/meta/alpine/Dockerfile)
- [`1.10-data`, `1.10.5-data`](https://github.com/influxdata/influxdata-docker/blob/aa7d2dd5fc23d7df809088de7d19d58aa39e4978/influxdb/1.10/data/Dockerfile)
- [`1.10-data-alpine`, `1.10.5-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/aa7d2dd5fc23d7df809088de7d19d58aa39e4978/influxdb/1.10/data/alpine/Dockerfile)
- [`1.10-meta`, `1.10.5-meta`](https://github.com/influxdata/influxdata-docker/blob/aa7d2dd5fc23d7df809088de7d19d58aa39e4978/influxdb/1.10/meta/Dockerfile)
- [`1.10-meta-alpine`, `1.10.5-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/aa7d2dd5fc23d7df809088de7d19d58aa39e4978/influxdb/1.10/meta/alpine/Dockerfile)
- [`1.11-data`, `1.11.3-data`](https://github.com/influxdata/influxdata-docker/blob/aa7d2dd5fc23d7df809088de7d19d58aa39e4978/influxdb/1.11/data/Dockerfile)
- [`1.11-data-alpine`, `1.11.3-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/aa7d2dd5fc23d7df809088de7d19d58aa39e4978/influxdb/1.11/data/alpine/Dockerfile)
- [`1.11-meta`, `1.11.3-meta`](https://github.com/influxdata/influxdata-docker/blob/aa7d2dd5fc23d7df809088de7d19d58aa39e4978/influxdb/1.11/meta/Dockerfile)
- [`1.11-meta-alpine`, `1.11.3-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/aa7d2dd5fc23d7df809088de7d19d58aa39e4978/influxdb/1.11/meta/alpine/Dockerfile)
- [`2.7`, `2.7.1`, `latest`](https://github.com/influxdata/influxdata-docker/blob/aa7d2dd5fc23d7df809088de7d19d58aa39e4978/influxdb/2.7/Dockerfile)
- [`2.7-alpine`, `2.7.1-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/aa7d2dd5fc23d7df809088de7d19d58aa39e4978/influxdb/2.7/alpine/Dockerfile)

# Quick reference (cont.)

Expand Down
4 changes: 2 additions & 2 deletions memcached/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ WARNING:

# Supported tags and respective `Dockerfile` links

- [`1.6.21`, `1.6`, `1`, `latest`, `1.6.21-bookworm`, `1.6-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/memcached/blob/d3a51632e123ddcbf1b1e06e6cefdaa65f27b29a/debian/Dockerfile)
- [`1.6.21-alpine`, `1.6-alpine`, `1-alpine`, `alpine`, `1.6.21-alpine3.18`, `1.6-alpine3.18`, `1-alpine3.18`, `alpine3.18`](https://github.com/docker-library/memcached/blob/d3a51632e123ddcbf1b1e06e6cefdaa65f27b29a/alpine/Dockerfile)
- [`1.6.22`, `1.6`, `1`, `latest`, `1.6.22-bookworm`, `1.6-bookworm`, `1-bookworm`, `bookworm`](https://github.com/docker-library/memcached/blob/b8a7264e4fc952fd71f2fe325908d6ba06e8e061/debian/Dockerfile)
- [`1.6.22-alpine`, `1.6-alpine`, `1-alpine`, `alpine`, `1.6.22-alpine3.18`, `1.6-alpine3.18`, `1-alpine3.18`, `alpine3.18`](https://github.com/docker-library/memcached/blob/b8a7264e4fc952fd71f2fe325908d6ba06e8e061/alpine/Dockerfile)

# Quick reference (cont.)

Expand Down
Loading

0 comments on commit 39e45f7

Please sign in to comment.