testdrivenio / flask-vue-kubernetes

Flask + Vue + Postgres + Docker + Kubernetes
MIT License
349 stars 144 forks source link

Where is docker files content? #2

Closed omidraha closed 5 years ago

omidraha commented 5 years ago

Hi, Where is content of docker file for these images:

mjhea0/vue-kubernetes mjhea0/flask-kubernetes

Thanks.

omidraha commented 5 years ago

I found them. https://github.com/testdrivenio/flask-vue-kubernetes/blob/master/services/server/dockerfile https://github.com/testdrivenio/flask-vue-kubernetes/blob/master/services/client/Dockerfile

guitarmanvt commented 4 years ago

This project does not work on Linux after a clean checkout. docker-compose build fails to find the Dockerfiles.

This is likely because the files are committed in lowercase (dockerfile), but specified in titlecase (Dockerfile) in docker-compose.yml. While this may actually work on both Windows and Mac OS, it fails on Linux (and on filesystems that care about case, such as ext4, which you can mount in Mac, too).

Workaround: rename the files locally to Dockerfile (title case).

Perhaps I'll fork this and bring a PR some day.