If you want to see the container creation command, it seems not possible, but you can see the detailed information of the container, which includes data volumes, environment variables, and commands to start and execute the container.
Usage: docker ps [OPTIONS]
List containers
Options:
-a, --all Show all containers (default shows just running)
-f, --filter value Filter output based on conditions provided (default [])
- exited=<int> an exit code of <int>
- label=<key> or label=<key>=<value>
- status=(created|restarting|running|paused|exited)
- name=<string> a container's name
- id=<ID> a container's ID
- before=(<container-name>|<container-id>)
- since=(<container-name>|<container-id>)
- ancestor=(<image-name>[:tag]|<image-id>|<image@digest>)
containers created from an image or a descendant.
--format string Pretty-print containers using a Go template
--help Print usage
-n, --last int Show n last created containers (includes all states) (default -1)
-l, --latest Show the latest created container (includes all states)
--no-trunc Don't truncate output
-q, --quiet Only display numeric IDs
-s, --size Display total file sizes
If you want to see the container creation command, it seems not possible, but you can see the detailed information of the container, which includes data volumes, environment variables, and commands to start and execute the container.
docker ps
docker ps -as
View all containers, including exited containers, and list the container size.
docker exec -it myphp-fpm bash enters the container myphp-fpm This is the container name
Reference article /a/11...