Skip to content

Commit 8b35a43

Browse files
committed
Typo fixes
And some stack.yml version updates
1 parent 9ef7d1d commit 8b35a43

File tree

12 files changed

+13
-13
lines changed

12 files changed

+13
-13
lines changed

amazonlinux/content.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Note that Docker Hub's vulnerability scanning for Amazon Linux is currently base
2323
## What is Amazon Linux 2023?
2424

2525
- Amazon Linux 2023: https://aws.amazon.com/linux/amazon-linux-2023/
26-
- 2023.0 Release Notes: https://docs.aws.amazon.com/linux/al2023/release-notes/relnotes.html
26+
- 2023 Release Notes: https://docs.aws.amazon.com/linux/al2023/release-notes/relnotes.html
2727
- FAQs: https://aws.amazon.com/linux/amazon-linux-2023/faqs/
2828
- What's New: https://aws.amazon.com/about-aws/whats-new/2023/03/amazon-linux-2023/
2929
- User Guide: https://docs.aws.amazon.com/linux/al2023/ug/what-is-amazon-linux.html

caddy/content.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ FROM %%IMAGE%%:<version>
9090
COPY --from=builder /usr/bin/caddy /usr/bin/caddy
9191
```
9292

93-
Note the second `FROM` instruction - this produces a much smaller image by simply overlaying the newly-built binary on top of the the regular `%%IMAGE%%` image.
93+
Note the second `FROM` instruction - this produces a much smaller image by simply overlaying the newly-built binary on top of the regular `%%IMAGE%%` image.
9494

9595
The [`xcaddy`](https://caddyserver.com/docs/build#xcaddy) tool is used to [build a new Caddy entrypoint](https://github.com/caddyserver/caddy/blob/4217217badf220d7d2c25f43f955fdc8454f2c64/cmd/caddy/main.go#L15..L25), with the provided modules. You can specify just a module name, or a name with a version (separated by `@`). You can also specify a specific version (can be a version tag or commit hash) of Caddy to build from. Read more about [`xcaddy` usage](https://github.com/caddyserver/xcaddy#command-usage).
9696

cassandra/content.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ There are a small number of environment variables supported by the image which w
8080

8181
- `CASSANDRA_START_RPC`: This variable is for controlling if the thrift rpc server is started. It will set the [`start_rpc`](http://docs.datastax.com/en/cassandra/3.0/cassandra/configuration/configCassandra_yaml.html?scroll=configCassandra_yaml__start_rpc) option in `cassandra.yaml`.
8282

83-
- `CASSANDRA_SEEDS`: This variable is the comma-separated list of IP addresses used by gossip for bootstrapping new nodes joining a cluster. It will set the `seeds` value of the [`seed_provider`](http://docs.datastax.com/en/cassandra/3.0/cassandra/configuration/configCassandra_yaml.html?scroll=configCassandra_yaml__seed_provider) option in `cassandra.yaml`. The `CASSANDRA_BROADCAST_ADDRESS` will be added the the seeds passed in so that the server will talk to itself as well.
83+
- `CASSANDRA_SEEDS`: This variable is the comma-separated list of IP addresses used by gossip for bootstrapping new nodes joining a cluster. It will set the `seeds` value of the [`seed_provider`](http://docs.datastax.com/en/cassandra/3.0/cassandra/configuration/configCassandra_yaml.html?scroll=configCassandra_yaml__seed_provider) option in `cassandra.yaml`. The `CASSANDRA_BROADCAST_ADDRESS` will be added the seeds passed in so that the server will talk to itself as well.
8484

8585
- `CASSANDRA_CLUSTER_NAME`: This variable sets the name of the cluster and must be the same for all nodes in the cluster. It will set the [`cluster_name`](http://docs.datastax.com/en/cassandra/3.0/cassandra/configuration/configCassandra_yaml.html?scroll=configCassandra_yaml__cluster_name) option of `cassandra.yaml`.
8686

drupal/stack.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ version: '3.1'
1515
services:
1616

1717
drupal:
18-
image: drupal:8-apache
18+
image: drupal:10-apache
1919
ports:
2020
- 8080:80
2121
volumes:
@@ -29,7 +29,7 @@ services:
2929
restart: always
3030

3131
postgres:
32-
image: postgres:10
32+
image: postgres:16
3333
environment:
3434
POSTGRES_PASSWORD: example
3535
restart: always

ghost/stack.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ version: '3.1'
33
services:
44

55
ghost:
6-
image: ghost:4-alpine
6+
image: ghost:5-alpine
77
restart: always
88
ports:
99
- 8080:2368

joomla/stack.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ services:
1313
JOOMLA_DB_PASSWORD: example
1414

1515
joomladb:
16-
image: mysql:5.6
16+
image: mysql:8.0
1717
restart: always
1818
environment:
1919
MYSQL_ROOT_PASSWORD: example

lightstreamer/content.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ Alternatively, the above tasks can be executed by deriving a new image through a
4343
```dockerfile
4444
FROM %%IMAGE%%
4545

46-
# Please specify a COPY command only for the the required custom configuration file
46+
# Please specify a COPY command only for the required custom configuration file
4747
COPY my-lightstreamer_conf.xml /lightstreamer/conf/lightstreamer_conf.xml
4848
COPY my-lightstreamer_log_conf.xml /lightstreamer/conf/lightstreamer_log_conf.xml
4949
```

nextcloud/content.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -278,7 +278,7 @@ Then run `docker-compose up -d`, now you can access Nextcloud at http://localhos
278278

279279
## Base version - FPM
280280

281-
When using the FPM image, you need another container that acts as web server on port 80 and proxies the requests to the Nextcloud container. In this example a simple nginx container is combined with the Nextcloud-fpm image and a MariaDB database container. The data is stored in docker volumes. The nginx container also needs access to static files from your Nextcloud installation. It gets access to all the volumes mounted to Nextcloud via the `volumes_from` option.The configuration for nginx is stored in the configuration file `nginx.conf`, that is mounted into the container. An example can be found in the examples section [here](https://github.com/nextcloud/docker/tree/master/.examples).
281+
When using the FPM image, you need another container that acts as web server on port 80 and proxies the requests to the Nextcloud container. In this example a simple nginx container is combined with the Nextcloud-fpm image and a MariaDB database container. The data is stored in docker volumes. The nginx container also needs access to static files from your Nextcloud installation. It gets access to all the volumes mounted to Nextcloud via the `volumes_from` option. The configuration for nginx is stored in the configuration file `nginx.conf`, that is mounted into the container. An example can be found in the examples section [here](https://github.com/nextcloud/docker/tree/master/.examples).
282282

283283
As this setup does **not include encryption**, it should be run behind a proxy.
284284

postfixadmin/stack.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ version: '3'
22

33
services:
44
db:
5-
image: mysql:5.7
5+
image: mysql:8.0
66
restart: always
77
environment:
88
MYSQL_RANDOM_ROOT_PASSWORD: 1

redmine/stack.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ services:
1313
REDMINE_SECRET_KEY_BASE: supersecretkey
1414

1515
db:
16-
image: mysql:5.7
16+
image: mysql:8.0
1717
restart: always
1818
environment:
1919
MYSQL_ROOT_PASSWORD: example

satosa/content.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ SATOSA uses encrypted cookies to track the progress of an authentication flow. T
6262

6363
### `SAML2_BACKEND_DISCO_SRV`
6464

65-
When part of a SAML2 multilateral federation, SATOSA will ask the user to choose an identity provider using a SAML discovery service. This environment variable optionally sets the the discovery service URL, which defaults to [SeamlessAccess](https://seamlessaccess.org/).
65+
When part of a SAML2 multilateral federation, SATOSA will ask the user to choose an identity provider using a SAML discovery service. This environment variable optionally sets the discovery service URL, which defaults to [SeamlessAccess](https://seamlessaccess.org/).
6666

6767
### `SAML2_BACKEND_CERT` and `SAML2_BACKEND_KEY`
6868

wordpress/stack.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ services:
1616
- wordpress:/var/www/html
1717

1818
db:
19-
image: mysql:5.7
19+
image: mysql:8.0
2020
restart: always
2121
environment:
2222
MYSQL_DATABASE: exampledb

0 commit comments

Comments
 (0)