1. Docker 설치하기https://www.docker.com/ Docker: Accelerated Container Application DevelopmentDocker is a platform designed to help developers build, share, and run container applications. We handle the tedious setup, so you can focus on the code.www.docker.com2. Docker를 사용하여 MariaDB 데이터베이스 서버의 이미지 다운로드 docker pull mariadb3. 'docker run' 명령어를 사용하여 MariaDB 컨테이너 생성docker run --name mariadb -d -p 3306..