Apache httpd 컨테이너 생성
docker run --name cntr-httpd-01 -d -p 8080:80 httpd
NGINX 컨테이너 생성
docker run --name cntr-nginx-01 -d -p 8080:80 nginx
MySQL 컨테이너 생성
docker run --name cntr-mysql -e MYSQL_ROOT_PASSWORD=<password> -d -p 3306:3306 mysql
docker exec -it cntr-mysql bash
root@5dd3eb4208e9:/# mysql -u root -p
Enter password:
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 9
Server version: 8.0.29 MySQL Community Server - GPL
Copyright (c) 2000, 2022, Oracle and/or its affiliates.
Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.
Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
mysql>
'클라우드 컴퓨팅 > Docker' 카테고리의 다른 글
도커 네트워크 기본 #2 - 네트워킹 튜토리얼(bridge) (0) | 2022.05.28 |
---|---|
도커 네트워크 기본 #1 - 개요 (0) | 2022.05.28 |
도커 기본 명령어 - 컨테이너 생성, 삭제, 실행, 정지 (0) | 2022.05.21 |
도커 명령어 정리 (0) | 2021.11.26 |
도커 소개 (0) | 2021.11.26 |