This repository has been archived on 2024-11-01. You can view files and clone it, but cannot push or open issues or pull requests.
services/tt-rss/docker-compose.yml

58 lines
1 KiB
YAML
Raw Normal View History

version: '3'
services:
app:
image: cthulhoo/ttrss-fpm-pgsql-static
restart: always
labels:
com.centurylinklabs.watchtower.enable: true
env_file:
- .env
- .secret.env
volumes:
- app:/var/www/html
networks:
2022-08-06 23:14:57 +00:00
local-net:
aliases:
- tt-rss-app
updater:
image: cthulhoo/ttrss-fpm-pgsql-static
restart: always
labels:
com.centurylinklabs.watchtower.enable: true
env_file:
- .env
- .secret.env
volumes:
- app:/var/www/html
depends_on:
- app
command: /opt/tt-rss/updater.sh
networks:
2022-08-06 23:14:57 +00:00
local-net:
web-nginx:
image: cthulhoo/ttrss-web-nginx
restart: always
labels:
com.centurylinklabs.watchtower.enable: true
volumes:
- app:/var/www/html:ro
- ./nginx.conf:/etc/nginx/nginx.conf
depends_on:
- app
networks:
2022-08-06 23:14:57 +00:00
local-net:
services:
aliases:
- tt-rss
volumes:
app:
networks:
2022-08-06 23:14:57 +00:00
local-net:
services:
external: true