docker-compose run --rm app sh -c 'python manage.py createsuperuser'
docker-compose run --rm app sh -c 'python manage.py makemigrations'
docker-compose run --rm app sh -c 'python manage.py migrate'
docker-compose up --build
docker-compose down
docker-compose run --rm app sh -c 'python manage.py test videos(테스트할 앱 이름)'
docker-compose run --rm app sh -c 'python manage.py startapp 앱이름(ex.videos)'
#1)
git add .
#2)
git commit -m '전달할 메세지'
#3)
git push origin main