Docker image for Stock Live View, a Node.js web app displaying real-time stock prices.
304
The Stock Live View repository hosts the Docker image for a web-based frontend application that provides real-time updates of stock prices. This application is an integral part of a comprehensive real-time stock tracking system, designed to offer users an up-to-date view of market conditions.
The Dockerfile provided in this repository sets up the necessary environment, installs dependencies, and starts the Node.js application, making it easy to get the Stock Live View service up and running with minimal configuration.
MONGODB_URL: The connection string for MongoDB.MONGODB_DB: The database name used for storing stock data.MONGODB_COLLECTION: The collection name used for storing stock data.NODE_ENV: The Node.js environment setting (default: development).To run the Stock Live View application, follow these steps:
docker pull buergi1986/stock_liveview:latest
docker run -d -p 3000:3000 --name stock_liveview buergi1986/stock_liveview:latest
Once the container is running, you can access the application at http://localhost:3000 to view real-time stock prices.
Content type
Image
Digest
sha256:451dd596c…
Size
58.6 MB
Last updated
over 2 years ago
docker pull buergi1986/stock_liveview