Skip to content

Commit aa68a97

Browse files
Update for backend
1 parent cd2c474 commit aa68a97

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

DOCKER_INFO.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
## Docker Images
22

33
### Frontend
4-
The image **emeraldkeys/calc-visualizer-frontend** runs a Vite server on port 5173. This displays the website's frontend. The associated dockerfile is in /calc-frontend.
5-
This is the development version, which contains the original files before they are assembled into the final javascript bundle.
4+
The image **emeraldkeys/calc-visualizer-backend** runs the backend server on port 3000. . The associated dockerfile is in /calc-backend.
5+
This is the production build.
66

77
Commands to run the image on your computer:
88
```
9-
docker pull emeraldkeys/calc-visualizer-frontend:latest
10-
docker run -d --name=calc-frontend -p 5173:5173 emeraldkeys/calc-visualizer-frontend:latest
9+
docker pull emeraldkeys/calc-visualizer-backend:latest
10+
docker run -d --name=calc-backend -p 3000:3000 emeraldkeys/calc-visualizer-backend:latest
1111
1212
```
13-
You can access the server on http://localhost:5173
13+
You can send requests to the server on http://localhost:3000
1414

1515
When you run the image, a new docker container is created on your computer. You can choose to delete old containers before creating a new one.

0 commit comments

Comments
 (0)