Last active
November 30, 2016 10:27
-
-
Save projectivemotion/531a7a6ed36d109735fd495e95c6fca3 to your computer and use it in GitHub Desktop.
Run tiny tiny rss in docker container
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # 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