#DOCKER-COMPOSE-NODEJS-EXPRESS-MYSQL In this sample, we will look at the functionality provided by 'Docker Compose' for defining and running multi-container Docker applications.
We are going to use 'MySQL' like our specialized database and 'Node.js' as our platform for creating highly performant web applications.
#ScreenShots
docker-compose up
- docker ps
- docker exec -it YOUR_MYSQL_CONTAINER_ID bash
- mysql -u root -p
- put the password(123)
- enter
- use CHIRINOS;
- show tables;
- describe EMPLOYEE;
ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY '123';