我试图将我的django项目进行docker化,但是在第一个docker-compose中失败了。
它说
PermissionError: [Errno 1] Operation not permitted: '/.Spotlight-V100'
我试图从终端中删除/.Spotlight-V100
,但也不允许该操作。
下面是我的docker-compose.yaml
version: "3"
services:
hackertrail:
container_name: hackertrail
build: HackerTrailAssessment
command: python manage.py runserver 0.0.0.0:8000
volumes:
- ./HackerTrailAssessment:/hackertrailassessment
ports:
- "8000:8000"
预先感谢您的帮助。