Feat: instruction for Windows WSL#146
Conversation
|
Hi @Zicchio , we can remove the localtime mount in docker-compose.yml because this work is executed in the docker build, dockerfile line 21-25 RUN apk update @peppelinux , if we don't remove the tzdata package, we can set the timezone with TZ environment, is an "alpine" feature ...but also is so bad UTC? 🤯 |
|
A question, are static volumes still necessary? If manage the static mount is a problemi with WSL, if we should maintain a mixed mount system (some local and some static), we could turn back with the local mount. We can create the requested directory in Docker-compose path (mongodata for the db, satosa for satosa container file and django_sp for django_sp container file) At this point the script become a simple utility that copy the example file from the repository directory to the container volume path. All mount are management with same mode, more simplicity for developers and admins. I'm a old poor person and like the simply life 👴 If is useful I can make a example pull request, It wouldn't take me long. |
|
Removing the docker volume and using a shared folder could still be a problem for Windows hosts due to this issue docker-library/mongo#232 (comment), that has as a workaround using an external docker volume as suggested here docker-library/mongo#74 (comment) |
This pull requests includes 2 modifications:
This is a partial fix to Issue #145