Skip to content

Instantly share code, notes, and snippets.

@projectivemotion
Last active November 30, 2016 10:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save projectivemotion/531a7a6ed36d109735fd495e95c6fca3 to your computer and use it in GitHub Desktop.
Save projectivemotion/531a7a6ed36d109735fd495e95c6fca3 to your computer and use it in GitHub Desktop.
Run tiny tiny rss in docker container

Set Up tiny tiny rss in a docker container

Using clue/ttrss image: https://github.com/clue/docker-ttrss

I was having some problem configuring the container using DB_PASS and DB_USER variables. I ended up using DB_ENV_USER and DB_ENV_PASS and was able to get the container up and running;

docker run -d --name ttrssdb -e 'MYSQL_ROOT_PASSWORD=my-secret-pw' mariadb
sleep 20 && docker run --link ttrssdb:db -p 89:80 -e DB_ENV_USER=root -e DB_ENV_PASS=my-secret-pw -d --name ttrss clue/ttrss
sleep 10 && xdg-open http://localhost:89/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment