1
0
Fork 0

Some updates to the TTRSS Docker Compose.

This commit is contained in:
Jonathan Chan 2020-12-29 09:49:33 +00:00
parent b47485eae8
commit 48cab571c3
3 changed files with 18 additions and 5 deletions

11
.gitignore vendored Normal file
View File

@ -0,0 +1,11 @@
*
!gitea/
!ghost/
!nextcloud/
!standardfile/
!ttrss/
!funkwhale/
!mediawiki/
!**/docker-compose.yml
!**/Dockerfile
!.gitignore

@ -1 +0,0 @@
Subproject commit 38cd3a6f31d78d1115760ca0905b156082ea3266

View File

@ -2,7 +2,7 @@ version: "3"
services: services:
ttrss: ttrss:
image: x86dev/docker-ttrss image: docker-ttrss
container_name: ttrss container_name: ttrss
restart: always restart: always
environment: environment:
@ -15,16 +15,19 @@ services:
- DB_PORT=5432 - DB_PORT=5432
- DB_TYPE=pgsql - DB_TYPE=pgsql
ports: ports:
- "8181:8080" - "8080:8080"
depends_on: depends_on:
- ttrssdb - ttrssdb
ttrssdb: ttrssdb:
image: nornagon/postgres image: postgres:alpine
container_name: ttrssdb container_name: ttrssdb
restart: always restart: always
environment:
- POSTGRES_USER=docker
- POSTGRES_PASSWORD=docker
expose: expose:
- "5432" - "5432"
volumes: volumes:
- ttrssdb:/var/lib/postgresql/9.3/main - ttrssdb:/var/lib/postgresql/data
volumes: volumes:
ttrssdb: ttrssdb: