Skip to content

Runnig app on localhost with Docker

Wojciech Fiołka edited this page Sep 2, 2023 · 1 revision

First time

  1. Install Docker
  2. Clone the repo - git clone [email protected]:Kabanosk/whisper-website.git
  3. Go to repo directory - cd whisper-website
  4. Create Docker image - docker build -t app .
  5. Run Docker container - docker run --name app_container -p 80:80 app
  6. Go to your browser and type http://127.0.0.1:80/

Next time

  1. Start your Docker container - docker start app_container
  2. Go to your browser and type http://127.0.0.1:80/
Clone this wiki locally