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
@@ -141,6 +141,14 @@ You can also visit `https://example.com:9001` to access portainer after starting
141
141
142
142
#### You could manage docker containers without command line with portainer.
143
143
144
+
### Show both running and stopped containers
145
+
146
+
The docker ps command only shows running containers by default. To see all containers, use the -a (or --all) flag:
147
+
148
+
```
149
+
docker ps -a
150
+
```
151
+
144
152
### Starting containers
145
153
146
154
You can start the containers with the `up` command in daemon mode (by adding `-d` as an argument) or by using the `start` command:
@@ -227,7 +235,7 @@ modify redis cache configuration values in the ```/app/basic/config/app_local.ph
227
235
228
236
### phpMyAdmin
229
237
230
-
could add/remove config.inc.php settings (such as Configuration Storage setup) with the various user defined settings in it:
238
+
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