This repository has been archived on 2022-11-03. You can view files and clone it, but cannot push or open issues or pull requests.
docker_systems/archive/ttrss/docker-compose.yml

26 lines
574 B
YAML
Raw Normal View History

2020-04-14 20:30:26 +02:00
---
version: "2"
services:
tt-rss:
2022-05-05 21:15:55 +02:00
image: registry.gitlab.com/lunik1/docker-tt-rss
2020-04-14 20:30:26 +02:00
container_name: tt-rss
environment:
- PUID
- PGID
2022-05-31 20:37:58 +02:00
- "TZ=Europe/Zurich"
- "TTRSS_DB_TYPE=mysql"
- "TTRSS_DB_USER=ttrss"
- "TTRSS_DB_NAME=ttrssdb"
- TTRSS_DB_PASS
- "TTRSS_DB_PORT=3306"
- "TTRSS_DB_HOST=host.docker.internal"
- "TTRSS_SELF_URL_PATH=https://ttrss.2li.ch"
2020-04-14 20:30:26 +02:00
volumes:
2022-05-31 20:37:58 +02:00
- ./config:/config
2022-05-18 22:15:41 +02:00
ports:
- "8080:80"
2022-05-31 20:37:58 +02:00
extra_hosts:
- "host.docker.internal:host-gateway"
2020-04-14 20:30:26 +02:00
restart: always