Skip to content

Instantly share code, notes, and snippets.

@akkshitgupta
akkshitgupta / MySQL.md
Last active November 10, 2023 12:53
MySQL using docker + VS code
  1. start the docker mysql container
# docker-compose.yml  ---> file name
services:
  db:
    image: mysql
    container_name: database
    environment:
      - MYSQL_ROOT_PASSWORD=yourpassword
 ports: