Skip to content

Latest commit

 

History

History
45 lines (26 loc) · 1.09 KB

README.rst

File metadata and controls

45 lines (26 loc) · 1.09 KB

poc_owm_iot

ZTLs POC on OWM and IOT devices

Getting Started

To start developing on this project simply bring up the Docker setup:

docker-compose up --build

Open your web browser at http://localhost:8000 to see the application you're developing. Log output will be displayed in the terminal, as usual.

Working with Docker

Create/destroy development environment:

docker-compose up -d    # create and start; omit -d to see log output
docker-compose down     # docker-compose kill && docker-compose rm -af

Start/stop development environment:

docker-compose start    # resume after 'stop'
docker-compose stop     # stop containers, but keep them intact

Other useful commands:

docker-compose ps       # list running containers
docker-compose logs -f  # view (and follow) container logs

See the docker-compose CLI reference for other commands.