Getting Started ๐Ÿš€

October 21, 2023 ยท View on GitHub


License MIT Docker Pulls Github Actions

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

Cinema-Quotes on Docker Hub

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.git and cd cinema-quotes
  • Install dependencies: npm i
  • Run: npm run start




Made with โค๏ธ and Javascript