Last active
October 17, 2024 02:44
-
-
Save tokisakiyuu/639ae46066455ad1555014d0cde94bb8 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: '3.7' | |
services: | |
mongodb_container: | |
# This image automatically creates a replica set required for transactions | |
image: prismagraphql/mongo-single-replica:4.4.3-bionic | |
# image: prismagraphql/mongo-single-replica:5.0.3 | |
environment: | |
MONGO_INITDB_ROOT_USERNAME: root | |
MONGO_INITDB_ROOT_PASSWORD: prisma | |
INIT_WAIT_SEC: 3 | |
ports: | |
- 27017:27017 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment