project with javascript for Distributed Programming.
280
This repository contains the official Docker image for the ProyectoJavascript. You can use this image to easily run the application in a Docker container without having to manually set up the environment.
Before using this Docker image, make sure you have the following installed:
To pull the Docker image from Docker Hub, open your terminal and run the following command:
docker pull stalinvasco2024/proyectojavascript:latest
For example:
docker pull stalinvasco2024/proyectojavascript:latest
Once you have pulled the image, you can run it as a Docker container. Use the following command:
docker run -d -p 80:80 --name proyectojavascript stalinvasco2024/proyectojavascript:latest
For example:
docker run -d -p 80:80 --name proyectojavascript stalinvasco2024/proyectojavascript:latest
This will start the container in detached mode (-d), map port 80 of the container to port 8080 of your local machine (-p 80:80), and give the container a name (--name proyectojavascript).
Once the container is running, you can access the application by opening a browser and going to:
http://localhost:80
To stop the running container, use the following command:
docker stop [container-name]
For example:
docker stop proyectojavascript
To remove the container after stopping it, run:
docker rm [container-name]
For example:
docker rm proyectojavascript
Content type
Image
Digest
sha256:70f9e8fcc…
Size
19.5 MB
Last updated
almost 2 years ago
docker pull stalinvasco2024/proyectojavascript