Yann Stepienik 2 anni fa
parent
commit
9a11b80e6b
3 ha cambiato i file con 2 aggiunte e 3 eliminazioni
  1. 0 1
      changelog.md
  2. 1 1
      package.json
  3. 1 1
      src/docker/run.go

+ 0 - 1
changelog.md

@@ -11,7 +11,6 @@
 - Silent error on favicon fetching
 - Create Servapp step 1: make name / image required
 - re-do mongoDB creation flow with a cosmos-compose request 
-- Fix Mongo 6 compatibility issue
 
 ## Version 0.5.0
  - Add Terminal to containers

+ 1 - 1
package.json

@@ -1,6 +1,6 @@
 {
   "name": "cosmos-server",
-  "version": "0.5.7",
+  "version": "0.5.8",
   "description": "",
   "main": "test-server.js",
   "bugs": {

+ 1 - 1
src/docker/run.go

@@ -27,7 +27,7 @@ func NewDB(w http.ResponseWriter, req *http.Request) (string, error) {
 	mongoPass := utils.GenerateRandomString(24)
 	monHost := "cosmos-mongo-" + id
 	
-	imageName := "mongo:latest"
+	imageName := "mongo:5"
 
 	// if CPU is missing AVX, use 4.4
 	if runtime.GOARCH == "amd64" && !cpu.X86.HasAVX {