thoo / Dash_Docker

This is the skeleton for Plotly-Dash with Docker container.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

This is the repository for a skeleton for Dash application with a docker container.

To build the docker image, cd into the root directory and, run

docker build -t dash_docker_hello .

To run the dash application:

docker run -d -p 8080:8080 dash_docker_hello

To look for the running docker containers:

docker ps -a

To stop the docker container from running and releasing the port:

docker stop CONTAINER_ID(needed at least 3 digits);

To remove the container and image, run:

docker rm CONTAINER_ID; docker rmi IMAGE;

About

This is the skeleton for Plotly-Dash with Docker container.


Languages

Language:Python 56.0%Language:Dockerfile 40.6%Language:Shell 3.4%