Skip to content

Commit 96acc8e

Browse files
Run update.sh
1 parent 44c07ad commit 96acc8e

File tree

7 files changed

+12
-16
lines changed

7 files changed

+12
-16
lines changed

backdrop/README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,6 @@ db:
111111
MYSQL_PASSWORD: backdrop
112112
MYSQL_ALLOW_EMPTY_PASSWORD: 'yes'
113113
MYSQL_DATABASE: backdrop
114-
115114
```
116115
117116
Run `docker-compose up`, wait for it to initialize completely, and visit `http://localhost:8080` or `http://host-ip:8080`.

couchbase/README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -103,8 +103,10 @@ N1QL is the SQL based query language for Couchbase Server. Simply switch to the
103103

104104
You can also execute N1QL queries from the command line. To run a query from command line query tool, run the cbq command line tool, authenticating using the credentials you provided to the wizard, and execute the N1QL Query on the beer-sample bucket
105105

106-
$ docker exec -it db cbq --user Administrator
107-
cbq> SELECT name FROM `beer-sample` WHERE brewery_id ="mishawaka_brewing";
106+
```console
107+
$ docker exec -it db cbq --user Administrator
108+
cbq> SELECT name FROM `beer-sample` WHERE brewery_id ="mishawaka_brewing";
109+
```
108110

109111
For more query samples, refer to [Run your first N1QL query](https://docs.couchbase.com/server/current/getting-started/try-a-query.html).
110112

emqx/README.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -328,7 +328,6 @@ Under linux host machine, the easiest way is [Tuning guide](https://docs.emqx.io
328328
If you want tune linux kernel by docker, you must ensure your docker is latest version (>=1.12).
329329
330330
```bash
331-
332331
docker run -d --name emqx -p 18083:18083 -p 1883:1883 -p 4369:4369 \
333332
--sysctl fs.file-max=2097152 \
334333
--sysctl fs.nr_open=2097152 \
@@ -346,7 +345,6 @@ docker run -d --name emqx -p 18083:18083 -p 1883:1883 -p 4369:4369 \
346345
--sysctl net.ipv4.tcp_max_tw_buckets=1048576 \
347346
--sysctl net.ipv4.tcp_fin_timeout=15 \
348347
emqx:latest
349-
350348
```
351349

352350
> REMEMBER: DO NOT RUN EMQ X DOCKER PRIVILEGED OR MOUNT SYSTEM PROC IN CONTAINER TO TUNE LINUX KERNEL, IT IS UNSAFE.

lightstreamer/README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,6 @@ In this case, the `/path/to/my-adapters` folder has to be structured with the re
146146
+my_adapter_set_2
147147
...
148148
+my_adapter_set_N
149-
150149
```
151150

152151
### Building a new image

nextcloud/README.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -473,11 +473,10 @@ $ docker-compose up -d
473473

474474
A lot of people want to use additional functionality inside their Nextcloud installation. If the image does not include the packages you need, you can easily build your own image on top of it. Start your derived image with the `FROM` statement and add whatever you like.
475475

476-
```yaml
476+
```dockerfile
477477
FROM nextcloud:apache
478478
479479
RUN ...
480-
481480
```
482481

483482
The [examples folder](https://github.com/nextcloud/docker/blob/master/.examples) gives a few examples on how to add certain functionalities, like including the cron job, smb-support or imap-authentication.
@@ -498,7 +497,7 @@ If you use your own Dockerfile, you need to configure your docker-compose file a
498497

499498
If you intend to use another command to run the image, make sure that you set `NEXTCLOUD_UPDATE=1` in your Dockerfile. Otherwise the installation and update will not work.
500499

501-
```yaml
500+
```dockerfile
502501
FROM nextcloud:apache
503502
504503
...

postgres/README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,6 @@ postgres=# SELECT 1;
9292
----------
9393
1
9494
(1 row)
95-
9695
```
9796

9897
## ... via [`docker stack deploy`](https://docs.docker.com/engine/reference/commandline/stack_deploy/) or [`docker-compose`](https://github.com/docker/compose)

telegraf/README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -24,12 +24,12 @@ WARNING:
2424

2525
# Supported tags and respective `Dockerfile` links
2626

27-
- [`1.20`, `1.20.4`](https://github.com/influxdata/influxdata-docker/blob/b0bf70d91b99c95ce425d6c20b31d48c5d3a7015/telegraf/1.20/Dockerfile)
28-
- [`1.20-alpine`, `1.20.4-alpine`](https://github.com/influxdata/influxdata-docker/blob/b0bf70d91b99c95ce425d6c20b31d48c5d3a7015/telegraf/1.20/alpine/Dockerfile)
29-
- [`1.21`, `1.21.4`](https://github.com/influxdata/influxdata-docker/blob/b0bf70d91b99c95ce425d6c20b31d48c5d3a7015/telegraf/1.21/Dockerfile)
30-
- [`1.21-alpine`, `1.21.4-alpine`](https://github.com/influxdata/influxdata-docker/blob/b0bf70d91b99c95ce425d6c20b31d48c5d3a7015/telegraf/1.21/alpine/Dockerfile)
31-
- [`1.22`, `1.22.0`, `latest`](https://github.com/influxdata/influxdata-docker/blob/b0bf70d91b99c95ce425d6c20b31d48c5d3a7015/telegraf/1.22/Dockerfile)
32-
- [`1.22-alpine`, `1.22.0-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/b0bf70d91b99c95ce425d6c20b31d48c5d3a7015/telegraf/1.22/alpine/Dockerfile)
27+
- [`1.20`, `1.20.4`](https://github.com/influxdata/influxdata-docker/blob/9ee4b83ea231c2c9e9a66227e70de6bafd32c317/telegraf/1.20/Dockerfile)
28+
- [`1.20-alpine`, `1.20.4-alpine`](https://github.com/influxdata/influxdata-docker/blob/9ee4b83ea231c2c9e9a66227e70de6bafd32c317/telegraf/1.20/alpine/Dockerfile)
29+
- [`1.21`, `1.21.4`](https://github.com/influxdata/influxdata-docker/blob/9ee4b83ea231c2c9e9a66227e70de6bafd32c317/telegraf/1.21/Dockerfile)
30+
- [`1.21-alpine`, `1.21.4-alpine`](https://github.com/influxdata/influxdata-docker/blob/9ee4b83ea231c2c9e9a66227e70de6bafd32c317/telegraf/1.21/alpine/Dockerfile)
31+
- [`1.22`, `1.22.1`, `latest`](https://github.com/influxdata/influxdata-docker/blob/9ee4b83ea231c2c9e9a66227e70de6bafd32c317/telegraf/1.22/Dockerfile)
32+
- [`1.22-alpine`, `1.22.1-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/9ee4b83ea231c2c9e9a66227e70de6bafd32c317/telegraf/1.22/alpine/Dockerfile)
3333

3434
# Quick reference (cont.)
3535

0 commit comments

Comments
 (0)