fixed problems with docker that only existed on other systems

This commit is contained in:
QkoSad
2025-06-17 16:53:54 +03:00
parent 5a2b291bdd
commit 3ba8c2abd5
3 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -1,4 +1,4 @@
{ Box, Button, Container, TextField, Typography } from "@mui/material"; import { Box, Button, Container, TextField, Typography } from "@mui/material";
import React, { useState } from "react"; import React, { useState } from "react";
import { createAlert } from "../../actions/alert"; import { createAlert } from "../../actions/alert";
import { addPost } from "../../actions/post"; import { addPost } from "../../actions/post";
+1 -1
View File
@@ -24,7 +24,7 @@ services:
MONGO_URL: "mongodb://the_username:the_password@mongo:27017/the_database" MONGO_URL: "mongodb://the_username:the_password@mongo:27017/the_database"
mongo: mongo:
image: mongo image: mongo:4.4
ports: ports:
- 3456:27017 - 3456:27017
environment: environment:
+2 -2
View File
@@ -4,8 +4,8 @@
"description": "", "description": "",
"main": "server.ts", "main": "server.ts",
"scripts": { "scripts": {
"start": "ts-node server.ts", "start": "npx ts-node server.ts",
"server": "ts-node-dev server.ts" "server": "npx ts-node-dev server.ts"
}, },
"author": "", "author": "",
"license": "ISC", "license": "ISC",