EzerIT / BibleOL

Web-based instruction in Biblical Hebrew and Greek
Other
25 stars 16 forks source link

docker container cannot be stoped and restarted #40

Closed oliverglanz closed 5 months ago

oliverglanz commented 5 months ago

Timothy created a very pleasant docker installation procedure making it development work so much easier. Great! However, what I found out (on apple silicon) that one cannot restart the container with docker after one has stopped the container from running. The only way to start the container again is by deleting the container (make clean) and creating the container from scratch again (make). Since some developmental work is done over a period of days with the computer being shutdown once in a while, it would be important to resume ones work be being able to restart the container one has worked on.

tmccormack165 commented 5 months ago

Hi Oliver, thank you for catching that. I will have a solution soon. I think that adding stop target in the Makefile is what we need.

tmccormack165 commented 5 months ago

This bug is now fixed by adding 'stop' and 'start' targets in the Makefiles. No matter what architecture a user is on, they can now type 'make stop' to pause a container, and 'make start' to resume their container.

oliverglanz commented 5 months ago

Excellent. Thanks, Timothy!