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
+9-1Lines changed: 9 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -140,6 +140,14 @@ You can also visit `https://example.com:9001` to access portainer after starting
140
140
141
141
#### You could manage docker containers without command line with portainer.
142
142
143
+
### Show both running and stopped containers
144
+
145
+
The docker ps command only shows running containers by default. To see all containers, use the -a (or --all) flag:
146
+
147
+
```
148
+
docker ps -a
149
+
```
150
+
143
151
### Starting containers
144
152
145
153
You can start the containers with the `up` command in daemon mode (by adding `-d` as an argument) or by using the `start` command:
@@ -235,7 +243,7 @@ $config['timeout'] = 0;
235
243
236
244
### phpMyAdmin
237
245
238
-
could add/remove config.inc.php settings (such as Configuration Storage setup) with the various user defined settings in it:
246
+
You can add your own custom config.inc.php settings (such as Configuration Storage setup) by creating a file named config.user.inc.php with the various user defined settings in it, and then linking it into the container using:
0 commit comments