* make sure the docker image will work as stand alone
without definining the command the image will not work and we will have to supply the command inside `docker-compose.yml` for exmaple, this make sure that the image is indepemdant
* use this file for development
so when you run the command you will need to provide the file name too
* example .env file for docker
* apply the changes to make simple to modify
1- and using this default file you will always pull the latest image from docker hub and not build it locally.
2- I added the volumes so that your postgres data wont be lost when you delete the container by mistake
* make it simpler for development
* adding more info about how to use docker in production
* missing word
* adding more details about using docker-compose
* fix a small typo
* remove the links in docker
as it will be soon deprecated, now we depend on the networks, also added a small note about those who wants to help developing the project.
- Wait for database to start on boot so only a single command is
needed.
- Tidied up readme.
- Explicitly specify build steps instead of using onbuild so
the apt package cache isn't busted by new code.
- Rename built image to be "octobox"