Skip to content

[Installation] Windows 10 Instructions (64 bit Pro)

Radu Raicea edited this page Oct 19, 2017 · 2 revisions

Download Docker

https://download.docker.com/win/stable/Docker%20for%20Windows%20Installer.exe

Meet the requirements for installing Docker on Windows

  • You must have Windows 10 Pro, Enterprise or Education with the 64-bit version installed. If you don't, installing Docker will be slightly more complicated because you need to install the Docker Toolbox. If you're in that scenario, scroll down below to the Install Docker Toolbox section.

  • You must have virtualization enabled on your computer. Sometimes it is enabled by default, but many times you need to go in the BIOS of your computer to enable it. Instructions for this vary from computer to computer, so I recommend searching instructions yourself.

  • Hyper-V must be enabled (Docker should enable it automatically when you run it the first time).

Install Docker

Follow steps 1 to 3 in the following link: https://docs.docker.com/docker-for-windows/install/#install-docker-for-windows

Start Docker

Follow the instructions in the following link to start Docker: https://docs.docker.com/docker-for-windows/install/#start-docker-for-windows

Clone App

Make sure you have Git installed on your computer before cloning the repository.

Open a Command Prompt and run the following commands:

cd [path/where/you/want/to/clone]

git clone https://github.com/Radu-Raicea/Dockerized-Flask.git

Build App

cd Dockerized-Flask

docker-compose up --build

Check out http://localhost/

Restarting the App

Press CTRL-C to kill the app

docker-compose down

docker-compose up --build