Skip to content

Latest commit

 

History

History
32 lines (20 loc) · 786 Bytes

README.md

File metadata and controls

32 lines (20 loc) · 786 Bytes

OceanHub

See the beauty of the ocean from your favorite device

Configs

  • Use PowerShell or Bash shell for the steps below

Build images

From the root folder of the project:

docker-compose -f infra/docker_dev/docker-compose.yml build

Using Docker

From the root folder of the project:

# Note, these are not sequential steps. You can use any of them independently of each other.

# To run bash shell
docker-compose -f infra/docker_dev/docker-compose.yml run --rm oceanhub-server bash

# To run Flask Python shell
docker-compose -f infra/docker_dev/docker-compose.yml run --rm oceanhub-server bash -c "source activate TEST && python backend/server/manage.py shell"

# To run the cluster up
docker-compose -f infra/docker_dev/docker-compose.yml up