You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
Docker is a useful tool you will likely want to use for your own personal projects or encounter at your workplace. Docker is used to containerize applications for easy deployment, to provide isolation, and scalability/redundancy.
For the auth bot, we would like to use docker to make it easy to deploy our bot and accompanying database.
Describe the solution you'd like
Create a DockerFile to turn our code into an image
Create a docker-compose file to deploy 2 services, the auth bot, and a MongoDB database
Write code in a new python file (perhaps db.py) to connect to the database
Is your feature request related to a problem? Please describe.
Docker is a useful tool you will likely want to use for your own personal projects or encounter at your workplace. Docker is used to containerize applications for easy deployment, to provide isolation, and scalability/redundancy.
For the auth bot, we would like to use docker to make it easy to deploy our bot and accompanying database.
Describe the solution you'd like
DockerFile
to turn our code into an imagedocker-compose
file to deploy 2 services, the auth bot, and a MongoDB databasedb.py
) to connect to the databaseAdditional context
Please see https://hub.docker.com/_/mongo to create a mongodb container in a DockerFile
The text was updated successfully, but these errors were encountered: