Sign inSign up

floydhub/floyd-web

By floydhub

Updated about 5 years ago

Runs the UI Web layer to interact with Floyd

Image
0

50K+

floydhub/floyd-web repository overview

To run the Floyd stack locally on your computer, follow the instructions below:

Prerequisite

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

Running Floyd

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

Tag summary

Content type

Image

Digest

Size

339.4 MB

Last updated

about 5 years ago

docker pull floydhub/floyd-web