Skip to content

dylanledermann/video-player

Repository files navigation

Kubernetes Guide

Video Player Test/Run Guide

Video Player Spring Boot Application to stream downloaded videos

ffmpeg needs to be installed on system:

sudo apt install ffmpeg

Create docker network to connect the two containers:

docker network create videoplayer-network

PostgreSQL DB:

docker pull postgres

docker build -t videoplayerdb -f dockerfile db .

docker run --name videoplayer-test-db -p 5432:5432 --network videoplayer-network -d videoplayerdb

Spring Boot Application:

docker build -t videoplayer -f dockerfile.prod .
docker run videoplayer --network videoplayer-network

Connect to PostgreSQL

psql postgresql://postgres:testPassword@localhost:5432/postgres

For Full App Build

# To start the app
docker compose up -d
# To stop the app
docker compose down -v

About

Video Player Spring Boot Application to stream downloaded videos

Resources

Stars

0 stars

Watchers

0 watching

Forks

Releases

No releases published

Packages

 
 
 

Contributors