Getting Started ๐
October 21, 2023 ยท View on GitHub

Getting Started ๐
Deploying from Docker Hub ๐ณ
You will need Docker installed on your machine.
docker run -d -p 3001:3001 shadowoff09/cinema-quotes:latest
Or
docker run -d \
-p 3001:3001 \
--name cinema-quotes \
--restart=always \
shadowoff09/cinema-quotes:latest
Deploying from GitHub (GHCR) ๐
docker run -p 3001:3001 ghcr.io/shadowoff09/cinema-quotes:latest
Or
docker run -d \
-p 3001:3001 \
--name cinema-quotes \
--restart=always \
ghcr.io/shadowoff09/cinema-quotes:latest
Deploying from Source ๐จ
You will need git, the latest or LTS version of Node.js installed on your system.
- Clone the Repo:
git clone https://github.com/shadowoff09/cinema-quotes.gitandcd cinema-quotes - Install dependencies:
npm i - Run:
npm run start