This in a online movie review portal. You can write your reviews by searching your desired movie. We have used the api of TheMovieDb for the movie database.
This is live at: https://filmster.paudelmadhav.com.np
docker build -t madhav-filmster .
export SECRET_KEY_BASE="$(rails secret)"
export DATABASE_URL="postgresql://postgres:password@localhost:5432/filmster_development"
export TMDB_API_KEY="TMDB_API_KEY"
docker run --rm -it -p 3000:3000 --name=filmster-container \
-e DATABASE_URL=$DATABASE_URL \
-e SECRET_KEY_BASE=$RAILS_SECRET_KEY \
-e TMDB_API_KEY=$TMDB_API_KEY \
madhav-filmster
docker tag madhav-filmster:latest paudelmadhav/madhav-filmster:latest
docker push paudelmadhav/madhav-filmster:latest