Skip to content
This repository was archived by the owner on Jan 30, 2025. It is now read-only.

Commit bbfa8cd

Browse files
authored
Merge pull request #50 from linuxserver/readme
fix var sample
2 parents b537e80 + ad75532 commit bbfa8cd

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ services:
8787
- PUID=1000
8888
- PGID=1000
8989
- TZ=Etc/UTC
90-
- "CLI_ARGS="--gameid minetest --port 30000"" #optional
90+
- "CLI_ARGS=--gameid minetest --port 30000" #optional
9191
volumes:
9292
- /path/to/data:/config/.minetest
9393
ports:
@@ -103,7 +103,7 @@ docker run -d \
103103
-e PUID=1000 \
104104
-e PGID=1000 \
105105
-e TZ=Etc/UTC \
106-
-e CLI_ARGS=""--gameid minetest --port 30000"" `#optional` \
106+
-e CLI_ARGS="--gameid minetest --port 30000" `#optional` \
107107
-p 30000:30000/udp \
108108
-v /path/to/data:/config/.minetest \
109109
--restart unless-stopped \
@@ -121,7 +121,7 @@ Container images are configured using parameters passed at runtime (such as thos
121121
| `-e PUID=1000` | for UserID - see below for explanation |
122122
| `-e PGID=1000` | for GroupID - see below for explanation |
123123
| `-e TZ=Etc/UTC` | specify a timezone to use, see this [list](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List). |
124-
| `-e CLI_ARGS="--gameid minetest --port 30000"` | Optionally specify any [CLI variables](https://wiki.minetest.net/Command_line) you want to launch the app with |
124+
| `-e CLI_ARGS=--gameid minetest --port 30000` | Optionally specify any [CLI variables](https://wiki.minetest.net/Command_line) you want to launch the app with |
125125
| `-v /config/.minetest` | Where minetest stores config files and maps etc. |
126126

127127
## Environment variables from files (Docker secrets)
@@ -233,6 +233,7 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64
233233

234234
## Versions
235235

236+
* **17.03.23:** - Fix CLI_ARGS example in readme.
236237
* **23.02.23:** - Rebase to Alpine 3.17, migrate to s6v3.
237238
* **06.08.22:** - Update irrlicht deps.
238239
* **02.05.22:** - Allow specifying the advertised port.

readme-vars.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ cap_add_param: false
3636
# optional container parameters
3737
opt_param_usage_include_env: true
3838
opt_param_env_vars:
39-
- { env_var: "CLI_ARGS", env_value: "\"--gameid minetest --port 30000\"", desc: "Optionally specify any [CLI variables](https://wiki.minetest.net/Command_line) you want to launch the app with" }
39+
- { env_var: "CLI_ARGS", env_value: "--gameid minetest --port 30000", desc: "Optionally specify any [CLI variables](https://wiki.minetest.net/Command_line) you want to launch the app with" }
4040

4141

4242
# application setup block
@@ -53,6 +53,7 @@ app_setup_block: |
5353
https://hub.docker.com/r/linuxserver/{{ project_name }}/tags
5454
# changelog
5555
changelogs:
56+
- { date: "17.03.23:", desc: "Fix CLI_ARGS example in readme."}
5657
- { date: "23.02.23:", desc: "Rebase to Alpine 3.17, migrate to s6v3."}
5758
- { date: "06.08.22:", desc: "Update irrlicht deps."}
5859
- { date: "02.05.22:", desc: "Allow specifying the advertised port."}

0 commit comments

Comments
 (0)