https://github.com/bbcho/example_app
Example dash app for docker
https://github.com/bbcho/example_app
Last synced: 10 months ago
JSON representation
Example dash app for docker
- Host: GitHub
- URL: https://github.com/bbcho/example_app
- Owner: bbcho
- Created: 2021-04-04T04:48:19.000Z (about 5 years ago)
- Default Branch: main
- Last Pushed: 2021-08-07T06:03:45.000Z (almost 5 years ago)
- Last Synced: 2025-02-28T21:32:08.445Z (over 1 year ago)
- Language: Jupyter Notebook
- Size: 15.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Example Dash App for Docker Containers
Using yfinance data for WTI, RBOB and HO to plot candlestick charts
## Start Docker Daemon
sudo dockerd
## To run:
sudo docker build -t example_app .
sudo docker run -d -p 8080:8000 example_app
Then go to:
http://127.0.0.1:8080
To run this image from Docker Hub use the following commands
sudo docker build -t bbcho/example_app
sudo docker run -d -p 8080:8000 bbcho/example_app
Then go to:
http://127.0.0.1:8080
## To Push to Docker Hub
docker images
docker tag ef54e9712cca bbcho/example_app:latest
docker push bbcho/example_app:latest