본문 바로가기

DOCKER

[Docker] 서버에 pull 받아왔는데 적용이 안될 때

sudo docker-compose down
sudo docker-compose up -d

컨테이너를 종료했다가 다시 실행하면 정상적으로 적용이 된다.

 

 

sudo docker-compose exec web python manage.py collectstatic

You have requested to collect static files at the destination
location as specified in your settings:

    /usr/src/app/_static

This will overwrite existing files!
Are you sure you want to do this?

Type 'yes' to continue, or 'no' to cancel: yes

150 static files copied to '/usr/src/app/_static'.

이미지나 CSS를 수정했을 경우에는 static 폴더에 따로 파일을 복사해주어야 하는데,

docker-compose exec web python manage.py collectstatic 를 입력하면 지정한 폴더로 파일이 복사된다.

강력 새로고침을 하거나 시크릿 창에서 확인하면 적용이 되어 있다.