-
Notifications
You must be signed in to change notification settings - Fork 60
For Production
Don Richards edited this page May 20, 2022
·
4 revisions
Anything developers should be mindful of in a production environment. Security tips for production has its own section. Feel free to add any info that might be useful.
Docker volumes are easily destroyed and can be done mistakenly. Assume this will eventually happen. Map any persistent data to named volumes through "Bind Mounts". Not all containers may have this setup and enabled so check it and make the necessary changes.
- Check out Gotchas in Writing Dockerfile
- And this on Docker – Data Volumes and Data Containers