Forgot Password,

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

You must login to ask a question.

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

databaseanswers.net Latest Questions

  • 0
Clara

I would like some help with this code, I can’t get a return through Pycharm, only if I open the container and run the command directly in mongosh. My code: connect = pymongo.MongoClient("mongodb://localhost:27017/") base = connect["base_test"] mycol = base["users"] print(mycol.find()) <pymongo.cursor.Cursor object at 0x106177a60> My docker-compose: ...

I have a 100% working docker based C#/Postgres app. The project structure is like this . ├── ./amaranth ├── ./amaranth.Tests └── ./amaranth.sln ./amaranth/docker-compose.yml: version: '3.8' services: app: build: context: . dockerfile: Dockerfile ...