Sign inSign up

buergi1986/stock_liveview

By buergi1986

Updated over 2 years ago

Docker image for Stock Live View, a Node.js web app displaying real-time stock prices.

Image
Web servers
0

304

buergi1986/stock_liveview repository overview

Stock Live View

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.

Key Features:
  • Real-Time Updates: Continuously displays live stock prices.
  • MongoDB Integration: Connects to a MongoDB database to fetch and display stock data.
  • User-Friendly Interface: Built with Node.js and styled with Tailwind CSS for a clean, responsive design.
  • Dockerized for Easy Deployment: The application is containerized using Docker, ensuring consistency across different environments and simplifying deployment.

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.

Environment Variables:
  • 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).

Usage

To run the Stock Live View application, follow these steps:

  1. Pull the Docker image:
    docker pull buergi1986/stock_liveview:latest
    
    
  2. Run the Docker container:
    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.

Tag summary

Content type

Image

Digest

sha256:451dd596c

Size

58.6 MB

Last updated

over 2 years ago

docker pull buergi1986/stock_liveview