Skip to content

Latest commit

 

History

History
17 lines (8 loc) · 450 Bytes

File metadata and controls

17 lines (8 loc) · 450 Bytes

Docker Introduction for Developer

docker version used : 1.13.1, build 94f4240/1.13

docker-compose version used : 1.21.2, build a133471

Some commands:

  • show running containers : docker ps

  • run docker-compose : docker-compose up -d --build --force-recreate

  • stop docker-compose : docker-compose down

  • connect to mysql database (needs mysql client installed) : mysql -h <host's ip> -P <host's port> -u root <database-name> -p