반응형 Command1 자주 사용하는 docker 명령어(command) docker container 생성/실행/종료/삭제 # Create and Run docker run -it -p 8888:8888 --name test-container -v /home/:/home/ centos/python-38-centos7:latest /bin/bash # Stop docker stop test-container # Remove docker rm test-container docker container 진입 # Bash docker exec -it test-container bash # Resize Window docker exec -it -e COLUMNS=200 -e LINES=100 test-container bash # postgresql (docker image -> po.. 2021. 12. 19. 이전 1 다음 반응형