Skip to content

Latest commit

 

History

History
20 lines (12 loc) · 961 Bytes

docker.md

File metadata and controls

20 lines (12 loc) · 961 Bytes

Docker

Deploy to Docker Cloud

  • Get the latest version of docker. See the offical site for installation info for your platform.

  • Install the latest version of docker-compose. Windows and Mac users should have docker-compose by default as it is part of Docker toolbox. For Linux users, see the official guide.

  • Run docker and in terminal to see if they are properly installed.

  • Clone the project and cd into it.

git clone https://github.com/fossasia/badgeyay && cd badgeyay
  • In the terminal window, run docker build -t badgeyay:latest to build badgeyay's docker image. This process can take some time.

  • After build is done, run docker run -d -p 5000:5000 badgeyay to start the server.