diff --git a/backdrop/content.md b/backdrop/content.md index 8e95c84ce..9de55cd37 100644 --- a/backdrop/content.md +++ b/backdrop/content.md @@ -63,7 +63,6 @@ db: MYSQL_PASSWORD: %%REPO%% MYSQL_ALLOW_EMPTY_PASSWORD: 'yes' MYSQL_DATABASE: %%REPO%% - ``` Run `docker-compose up`, wait for it to initialize completely, and visit `http://localhost:8080` or `http://host-ip:8080`. diff --git a/couchbase/content.md b/couchbase/content.md index 4336962da..58436fc64 100644 --- a/couchbase/content.md +++ b/couchbase/content.md @@ -51,8 +51,10 @@ N1QL is the SQL based query language for Couchbase Server. Simply switch to the 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 - $ docker exec -it db cbq --user Administrator - cbq> SELECT name FROM `beer-sample` WHERE brewery_id ="mishawaka_brewing"; +```console +$ docker exec -it db cbq --user Administrator +cbq> SELECT name FROM `beer-sample` WHERE brewery_id ="mishawaka_brewing"; +``` For more query samples, refer to [Run your first N1QL query](https://docs.couchbase.com/server/current/getting-started/try-a-query.html). diff --git a/emqx/content.md b/emqx/content.md index 61945ad6d..606bd6c27 100644 --- a/emqx/content.md +++ b/emqx/content.md @@ -281,7 +281,6 @@ Under linux host machine, the easiest way is [Tuning guide](https://docs.emqx.io If you want tune linux kernel by docker, you must ensure your docker is latest version (>=1.12). ```bash - docker run -d --name emqx -p 18083:18083 -p 1883:1883 -p 4369:4369 \ --sysctl fs.file-max=2097152 \ --sysctl fs.nr_open=2097152 \ @@ -299,7 +298,6 @@ docker run -d --name emqx -p 18083:18083 -p 1883:1883 -p 4369:4369 \ --sysctl net.ipv4.tcp_max_tw_buckets=1048576 \ --sysctl net.ipv4.tcp_fin_timeout=15 \ %%IMAGE%%:latest - ``` > REMEMBER: DO NOT RUN EMQ X DOCKER PRIVILEGED OR MOUNT SYSTEM PROC IN CONTAINER TO TUNE LINUX KERNEL, IT IS UNSAFE. diff --git a/lightstreamer/content.md b/lightstreamer/content.md index 2b322d6b9..93b07ec16 100644 --- a/lightstreamer/content.md +++ b/lightstreamer/content.md @@ -92,7 +92,6 @@ In this case, the `/path/to/my-adapters` folder has to be structured with the re +my_adapter_set_2 ... +my_adapter_set_N - ``` ### Building a new image diff --git a/postgres/content.md b/postgres/content.md index eec3da0ee..970f9886c 100644 --- a/postgres/content.md +++ b/postgres/content.md @@ -34,7 +34,6 @@ postgres=# SELECT 1; ---------- 1 (1 row) - ``` ## %%STACK%%