1
0
Fork 0

Adding docker-compose.yml files for standardfile and ttrss.

This commit is contained in:
Jonathan Chan 2018-11-10 12:31:40 -08:00
parent 2a7940004f
commit bd987b4d93
2 changed files with 27 additions and 0 deletions

1
standardfile Submodule

@ -0,0 +1 @@
Subproject commit 8b5d459277a715f7057b7ef5d3d406d0fa3c15fb

26
ttrss/docker-compose.yml Normal file
View File

@ -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: