This is a web-based tool to help you with analyzing and comparing different stocks. The data will be provided by the beautiful yfinance project.
-
Build prod image
docker-compose build --no-cache prod -
After successfully building the image, create a container using
docker-compose up -d --force-recreate prod -
Open your browser at http://localhost:8050 .
You can create your dev container setup for development inside that container similar to the "Getting started" setup above:
-
Build dev image
docker-compose build --no-cache dev -
After successfully building the image, start and stop the container once via command line.
docker-compose up -d --force-recreate dev
-
You can use VsCode now to attach the dev container
-
Attach to your container using VSCode or via CLI
docker exec -it fin_dev bash
