tt-rss container
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

41 lines
802 B

version: "3.5"
networks:
webNet:
external:
name: webNet
backend:
internal: true
services:
db_tt-rss:
image: postgres:11-alpine
container_name: db_tt-rss.postgres
restart: unless-stopped
networks:
- backend
environment:
POSTGRES_USER: ttrss
POSTGRES_DB: ttrss
env_file:
db.env
volumes:
- ./_data_/db.postgres:/var/lib/postgresql/data
tt-rss:
image: linuxserver/tt-rss
container_name: tt-rss
depends_on:
- db_tt-rss
networks:
- webNet
- backend
restart: unless-stopped
volumes:
- ./_data_/tt-rss:/config
environment:
TZ: Europe/Berlin
VIRTUAL_HOST: tt-rss.ckris.de
LETSENCRYPT_HOST: tt-rss.ckris.de
LETSENCRYPT_EMAIL: webmaster@ckris.de