You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+37-5Lines changed: 37 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -162,14 +162,46 @@ Obviously, you can do the same via just opening the config file directly:
162
162
```
163
163
164
164
#### Docker image install
165
-
For Docker instances, one way is to use a configured `mktxp.conf` file from a local installation. Alternatively you can create a standalone one in a dedicated folder:
165
+
The MKTXP Docker image runs as UID 1000 (standard user ID on most Linux distributions) to simplify file permissions when bind-mounting configuration files.
166
+
167
+
For Docker instances, you have several options for managing configuration:
168
+
169
+
**Option 1: Using `/etc/mktxp` (Recommended)**
170
+
```bash
171
+
# Create config directory and files
172
+
mkdir mktxp-config
173
+
nano mktxp-config/mktxp.conf # copy&edit sample entry(ies) from above
174
+
nano mktxp-config/_mktxp.conf # optional: system configuration
175
+
176
+
# Run with dedicated config directory
177
+
docker run -v "$(pwd)/mktxp-config:/etc/mktxp" -p 49090:49090 -it --rm \
0 commit comments