Skip to content

Instantly share code, notes, and snippets.

@projectivemotion
Last active November 30, 2016 10:27
Show Gist options
  • Select an option

  • Save projectivemotion/531a7a6ed36d109735fd495e95c6fca3 to your computer and use it in GitHub Desktop.

Select an option

Save projectivemotion/531a7a6ed36d109735fd495e95c6fca3 to your computer and use it in GitHub Desktop.

Revisions

  1. projectivemotion revised this gist Nov 30, 2016. 1 changed file with 6 additions and 3 deletions.
    9 changes: 6 additions & 3 deletions tinytinyrssdocker.md
    Original file line number Diff line number Diff line change
    @@ -5,6 +5,9 @@ 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/
    ```
    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/
    ```

  2. projectivemotion revised this gist Nov 30, 2016. 1 changed file with 3 additions and 3 deletions.
    6 changes: 3 additions & 3 deletions tinytinyrssdocker.md
    Original file line number Diff line number Diff line change
    @@ -5,6 +5,6 @@ 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/
    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/
  3. projectivemotion renamed this gist Nov 30, 2016. 1 changed file with 0 additions and 0 deletions.
    File renamed without changes.
  4. projectivemotion created this gist Nov 30, 2016.
    10 changes: 10 additions & 0 deletions gistfile1.txt
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,10 @@
    # 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/