diff options
author | Chuck Lantz <clantz@microsoft.com> | 2022-10-13 03:31:29 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-13 03:31:29 +0300 |
commit | a244dc394f781274e4d0c6e469779d8c6857eae4 (patch) | |
tree | 6ccbb1e0e4674c36e44672ef802edc040e4e2327 /src | |
parent | a8cb375d460840bbf8c91599d16fc87d9ee8b996 (diff) |
Fix formatting for desktop-lite note (#216)
Diffstat (limited to 'src')
-rw-r--r-- | src/desktop-lite/NOTES.md | 22 | ||||
-rw-r--r-- | src/desktop-lite/README.md | 22 |
2 files changed, 22 insertions, 22 deletions
diff --git a/src/desktop-lite/NOTES.md b/src/desktop-lite/NOTES.md index ccc4e2e..28865a3 100644 --- a/src/desktop-lite/NOTES.md +++ b/src/desktop-lite/NOTES.md @@ -27,19 +27,19 @@ See the [Fluxbox menu documentation](http://www.fluxbox.org/help/man-fluxbox-men If you run into applications crashing, you may need to increase the size of the shared memory space allocated to your container. For example, this will bump it up to 1 GB in `devcontainer.json`: - ```json - "runArgs": ["--shm-size=1g"] - ``` +```json +"runArgs": ["--shm-size=1g"] +``` - Or using Docker Compose: +Or using Docker Compose: - ```yaml - services: - your-service-here: - # ... - shm_size: '1gb' - # ... - ``` +```yaml +services: + your-service-here: + # ... + shm_size: '1gb' + # ... +``` ## Installing a browser diff --git a/src/desktop-lite/README.md b/src/desktop-lite/README.md index 249723a..1130e9e 100644 --- a/src/desktop-lite/README.md +++ b/src/desktop-lite/README.md @@ -52,19 +52,19 @@ See the [Fluxbox menu documentation](http://www.fluxbox.org/help/man-fluxbox-men If you run into applications crashing, you may need to increase the size of the shared memory space allocated to your container. For example, this will bump it up to 1 GB in `devcontainer.json`: - ```json - "runArgs": ["--shm-size=1g"] - ``` +```json +"runArgs": ["--shm-size=1g"] +``` - Or using Docker Compose: +Or using Docker Compose: - ```yaml - services: - your-service-here: - # ... - shm_size: '1gb' - # ... - ``` +```yaml +services: + your-service-here: + # ... + shm_size: '1gb' + # ... +``` ## Installing a browser |