diff --git a/standardfile b/standardfile new file mode 160000 index 0000000..8b5d459 --- /dev/null +++ b/standardfile @@ -0,0 +1 @@ +Subproject commit 8b5d459277a715f7057b7ef5d3d406d0fa3c15fb diff --git a/ttrss/docker-compose.yml b/ttrss/docker-compose.yml new file mode 100644 index 0000000..407f98f --- /dev/null +++ b/ttrss/docker-compose.yml @@ -0,0 +1,26 @@ +version: "3" + +services: + ttrss: + image: clue/ttrss + container_name: ttrss + restart: always + environment: + - SELF_URL_PATH=https://ress.ert.space + - DB_HOST=ttrssdb + - DB_PORT=5432 + - DB_TYPE=pgsql + ports: + - "8181:80" + depends_on: + - ttrssdb + ttrssdb: + image: nornagon/postgres + container_name: ttrssdb + restart: always + expose: + - "5432" + volumes: + - ttrssdb:/var/lib/postgresql/9.3/main +volumes: + ttrssdb: