services/tt-rss/docker-compose.yml

52 lines
845 B
YAML
Raw Normal View History

version: '3'
services:
app:
image: cthulhoo/ttrss-fpm-pgsql-static
restart: always
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
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
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