Deprecated: get_settings is deprecated since version 2.1.0! Use get_option() instead. in /home/mehmetcanyegen/public_html/wp-includes/functions.php on line 4861
docker exec -it <containerIdOrName> bash
thanks: https://askubuntu.com/a/543057
docker exec -it <containerIdOrName> bash
thanks: https://askubuntu.com/a/543057
stop running container
docker stop test01
commit the container
docker commit test01 test02
NOTE: The above, test02 is a new image that I’m constructing from the test01 container.
re-run from the commited image
docker run -p 8080:8080 -td test02