We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 210a1d4 commit 2cd31c5Copy full SHA for 2cd31c5
README.md
@@ -33,7 +33,13 @@ docker create \
33
linuxserver/mariadb
34
```
35
36
-**Parameters**
+## Parameters
37
+
38
+`The parameters are split into two halves, separated by a colon, the left hand side representing the host and the right the container side.
39
+For example with a port -p external:internal - what this shows is the port mapping from internal to external of the container.
40
+So -p 8080:80 would expose port 80 from inside the container to be accessible from the host's IP on port 8080
41
+http://192.168.x.x:8080 would show you what's running INSIDE the container on port 80.`
42
43
44
* `-p 3306` - mysql port
45
* `-v /config` - Contains the db itself and all assorted settings.
0 commit comments