Deployment Practices
Docker
I have added a basic example of Docker usage, with the usage of Docker volumes to store the logs/data in the disk.
docker volume create --driver local --name varlogs --opt type=none --opt device=/var/folder_name/ --opt o=uid=root,gid=root --opt o=binddocker run -itd --restart unless-stopped --name image_name --env-file env.txt -v varlogs:/var/folder_name -h=hostname_01 hub.docker.com_docker_iamge_pathdocker logs -f image_nameVault
I have added a basic example of Vault usage in python, where you can easily store the credentials in the vault.
Github Link
Click Here to see the code. This is not the full code, but just a module representation