We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 562b089 commit 84b1f74Copy full SHA for 84b1f74
docker-compose/docker-compose.yml
@@ -69,6 +69,20 @@ services:
69
MONGO_INITDB_ROOT_PASSWORD: xxxx
70
MONGO_INITDB_DATABASE: chatgpt
71
72
+
73
+ mongo-gui:
74
+ container_name: "mongo-gui"
75
+ image: ugleiton/mongo-gui
76
+ restart: always
77
+ ports:
78
+ - "4321:4321"
79
+ environment:
80
+ - MONGO_URL=mongodb://chatgpt:xxxx@database:27017
81
+ links:
82
+ - database
83
+ depends_on:
84
85
86
nginx:
87
image: nginx:alpine
88
container_name: chatgptweb-database
0 commit comments