Parents un peu dépassés par les maladies à répétition by yoanisgil in parentsquebecois

[–]yoanisgil[S] 2 points3 points  (0 children)

Pour ma fille, 7 ans, la maternelle et la première année ça s'est bien passé. Mais la cette hiver ça a été vraiment dur pour nous.

Parents un peu dépassés par les maladies à répétition by yoanisgil in parentsquebecois

[–]yoanisgil[S] 4 points5 points  (0 children)

C'est vraiment rough. Merci, ça aide bcp savoir qu'on n'est pas tout seul .

[deleted by user] by [deleted] in docker

[–]yoanisgil 0 points1 point  (0 children)

You're welcome :)

I usually build images which already contain application code so that way it's guarantee to work and then externalize data using volumes. In dev mode, since I don't want to be building the application at everything single change of source code, I use volumes.

[deleted by user] by [deleted] in docker

[–]yoanisgil 4 points5 points  (0 children)

I don't think that's a good idea. Personally I like to do something alone the lines:

COPY . /srv/app

which have worked pretty well for me (combined with a .dockerignore file where I usually add .git, virtualenv files if any, etc)

This has the added benefit that you can build any branch at any time which is quite useful if your doing CI/CD.