Runs the UI Web layer to interact with Floyd
50K+
To run the Floyd stack locally on your computer, follow the instructions below:
You need to have Docker running on your computer. To set up docker on a Mac or a Windows machine easily, follow instructions here: https://docs.docker.com/docker-for-mac/ and https://docs.docker.com/docker-for-windows/
Verify docker is installed by running:
➜ docker --version
Docker version 1.12.1-rc1, build 7889dc7, experimental
You also need to install docker-compose. Follow setup instructions here: https://docs.docker.com/compose/install/
➜ docker-compose --version
docker-compose version 1.8.0, build f3628c7
Create a file named docker-compose.yml in a directory of your choice and paste the following content in it:
version: '2'
services:
floyd-web:
image: floydhub/floyd-web:latest
ports:
- "3000:3000"
depends_on:
- floyd-engine
floyd-engine:
image: floydhub/floyd-engine:latest
ports:
- "8080:8080"
Then run:
➜ docker-compose up
Floyd should now be up and running on your computer. You can go to http://localhost:3000/ to see the web UI
Content type
Image
Digest
Size
339.4 MB
Last updated
about 5 years ago
docker pull floydhub/floyd-web