Deploying Common Services with Docker: Tomcat, MySQL, and Redis

Standard Workflow # Search for available images docker search <image_name> # Download an image to the local machine docker pull <image_name> # Verify the downloaded image docker images # Launch a container from the image docker run [options] <image_name> # Halt a running container docker stop <container_id> # Delete ...

Posted on Sun, 10 May 2026 22:59:14 +0000 by daena76

Deploying YAPI with Docker Containers

Prerequisites Before starting, ensure Docker is installed on your system. This guide covers the complete setup process for running YAPI, an efficient API management tool, within Docker containers. Step 1: Launch MongoDB YAPI reuqires MongoDB as its backend database. Create a dedicated volume and start the database container: docker volume creat ...

Posted on Sun, 10 May 2026 17:00:59 +0000 by Damien_Buttler