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 를 입력하면 지정한 폴더로 파일이 복사된다.
강력 새로고침을 하거나 시크릿 창에서 확인하면 적용이 되어 있다.
'DOCKER' 카테고리의 다른 글
[Docker] PostgreSQL로 만든 DB 마이그레이션 (0) | 2023.10.24 |
---|---|
[Docker] docker.errors.DockerException: Error while fetching server API version: (2, 'CreateFile', '지정된 파일을 찾을 수 없습니다.') (0) | 2023.10.24 |
[Docker] 도커 명령어 (0) | 2023.10.24 |