🧚 주목! Beekeeper Studio는 빠르고 현대적이며 오픈 소스 데이터베이스 GUI입니다 다운로드
September 21, 2024 작성자: Matthew Rathbone

To use Docker and docker-compose, you will need to have them installed on your machine. If you don’t have them installed, you can follow the instructions on the Docker website to install them.

Pull the MariaDB Docker Image

First, we need to pull the MariaDB image from the Docker Hub. This image contains everything needed to run MariaDB.

docker pull mariadb:latest

This command will download the latest version of the MariaDB image. You can specify a particular version if needed:

docker pull mariadb:10.5

Create a Docker Network (Optional)

Creating a custom network allows better communication between containers. This step is optional but recommended for more complex setups involving multiple containers.

docker network create mariadb_network

Run a MariaDB Container

Now, let’s run a MariaDB container using the image we just pulled. We’ll map a local port to the container’s port and set up some environment variables for the root password and database name.

docker run --name mariadb-container -d \
    --network mariadb_network \
    -e MYSQL_ROOT_PASSWORD=my-secret-pw \
    -e MYSQL_DATABASE=mydatabase \
    -p 3306:3306 \
    mariadb:latest
  • –name mariadb-container: Names the container for easier reference.
  • -d: Runs the container in detached mode.
  • –network mariadb_network: Connects the container to the custom network.
  • -e MYSQL_ROOT_PASSWORD=my-secret-pw: Sets the root password for MariaDB.
  • -e MYSQL_DATABASE=mydatabase: Creates a database named mydatabase.
  • -p 3306:3306: Maps port 3306 on the host to port 3306 on the container.

Verify the MariaDB Container is Running

Use the following command to check if the MariaDB container is running:

docker ps

Expected Output:

CONTAINER ID   IMAGE          COMMAND                  CREATED         STATUS         PORTS                    NAMES
abc123def456   mariadb:latest "docker-entrypoint.s…"   5 seconds ago   Up 5 seconds   0.0.0.0:3306->3306/tcp   mariadb-container

Connecting to the MariaDB Container

Now that the MariaDB container is running, you can connect to it using a MySQL client. If you have the MySQL client installed locally, you can connect using:

mysql -h 127.0.0.1 -P 3306 -u root -p

After entering the root password (my-secret-pw), you should be connected to your MariaDB instance.

Using Docker Compose

Docker Compose can manage multi-container setups with a simple configuration file. Here’s how to set up MariaDB using Docker Compose:

Create a docker-compose.yml file

Create a docker-compose.yml file in the root directory of your project. This file will define the containers that you want to run as part of your development environment.

version: '3.1'

services:
  mariadb:
    image: mariadb:latest
    container_name: mariadb-compose
    environment:
      MYSQL_ROOT_PASSWORD: my-secret-pw
      MYSQL_DATABASE: mydatabase
    ports:
      - "3306:3306"
    networks:
      - mariadb_network

networks:
  mariadb_network:
    driver: bridge

In this example, we are using the mariadb:latest image and setting several environment variables to configure the database. We are also exposing the default MariaDB port (3306) so that we can connect to the database from our application.

Run Docker Compose to start the container:

docker-compose up -d

Expected Output:

Creating network "projectname_mariadb_network" with driver "bridge"
Creating mariadb-compose ... done

This command will pull the necessary images and start the containers in the background. Run without -d to start the container in the foreground. You can use the following command to see the status of the containers:

docker-compose ps

Connecting to MariaDB via Beekeeper Studio

Download Beekeeper Studio (Free) >

Beekeeper Studio is an open source SQL editor that supports MariaDB. Here’s how to connect to your Docker-based MariaDB instance using Beekeeper Studio:

  1. Open Beekeeper Studio and click on New Connection.
  2. Select MariaDB as the connection type.
  3. Enter the following connection details:
    • Host: 127.0.0.1
    • Port: 3306
    • Username: root
    • Password: my-secret-pw
    • Database: mydatabase (optional)
  4. Click Connect to establish the connection.

You’ll get a nice, pleasant interface you can use to edit & query your MariaDB database:

Beekeeper Studio's Lovely UI

Managing Your Development Environment

To stop the MariaDB container:

docker stop mariadb-container

To start the container again:

docker start mariadb-container

To remove the container:

docker rm -f mariadb-container

Conclusion

Setting up a MariaDB development environment using Docker provides a robust setup that’s easy to manage and replicate. Using Docker Compose adds scalability, making it an excellent choice for both small projects and larger development teams.

Other articles you may enjoy:

Beekeeper Studio는 무료 & 오픈 소스 데이터베이스 GUI입니다

제가 사용해 본 최고의 SQL 쿼리 & 편집기 도구입니다. 데이터베이스 관리에 필요한 모든 것을 제공합니다. - ⭐⭐⭐⭐⭐ Mit

Beekeeper Studio는 빠르고 직관적이며 사용하기 쉽습니다. Beekeeper는 많은 데이터베이스를 지원하며 Windows, Mac, Linux에서 훌륭하게 작동합니다.

Beekeeper의 Linux 버전은 100% 완전한 기능을 갖추고 있으며, 기능 타협이 없습니다.

사용자들이 Beekeeper Studio에 대해 말하는 것

★★★★★
"Beekeeper Studio는 제 예전 SQL 워크플로를 완전히 대체했습니다. 빠르고 직관적이며 데이터베이스 작업을 다시 즐겁게 만들어 줍니다."
— Alex K., 데이터베이스 개발자
★★★★★
"많은 데이터베이스 GUI를 사용해 봤지만, Beekeeper는 기능과 단순함 사이의 완벽한 균형을 찾았습니다. 그냥 작동합니다."
— Sarah M., 풀스택 엔지니어

SQL 워크플로를 개선할 준비가 되셨나요?

download 무료 다운로드