-
Notifications
You must be signed in to change notification settings - Fork 0
Use with docker
Andrea de Ruvo edited this page Dec 11, 2024
·
4 revisions
docker pull ghcr.io/genpat-it/spread:latest
docker run -d -p 3000:8080 --name spread ghcr.io/genpat-it/spread:latestYou can surf the spread instance by visiting http://<IP_ADDRESS_OR_HOSTNAME>:3000 in your web browser.
To build the Docker image from the source code, follow these steps:
- Clone the repository:
git clone https://github.com/genpat-it/spread- Navigate to the cloned directory:
cd spread- Build the Docker image using the provided Dockerfile. You can also specify the port using the
PORTbuild argument:
docker build . -t spread --build-arg PORT=3000- Once the image is built, you can run the Docker container:
docker run -d spreadThis will expose the application running inside the container on port 3000 of your host machine.