Archived
2
0
Fork 0
forked from blallo/Feedati
This repository has been archived on 2024-10-31. You can view files and clone it, but cannot push or open issues or pull requests.
Feedati/docker-compose.yml

40 lines
916 B
YAML
Raw Normal View History

2018-07-31 16:36:00 +02:00
version: "3.6"
services:
db:
image: postgres:10
volumes:
- postgres_data:/var/lib/postgresql/data
environment:
- POSTGRES_USER=ttrss
- POSTGRES_PASSWORD=password-dev
- POSTGRES_DB=ttrss
tt-rss:
image: feedati/tt-rss:latest
build:
context: .
dockerfile: ./docker/Dockerfile-tt-rss
volumes:
- ./tt-rss:/var/www/html/tt-rss
- ./docker/config.php:/var/www/html/tt-rss/config.php:ro
ports:
2018-07-31 23:37:05 +02:00
[] #- 8000:80
2018-07-31 16:36:00 +02:00
rss-bridge:
image: feedati/rss-bridge:latest
build:
context: ./rss-bridge/
ports:
2018-07-31 23:37:05 +02:00
[] #- 8001:80
2018-07-31 16:36:00 +02:00
webserver:
image: nginx:latest
volumes:
- ./docker/rss.conf:/etc/nginx/conf.d/default.conf:ro
ports:
2018-07-31 23:37:05 +02:00
- 12000:80
2018-07-31 16:36:00 +02:00
volumes:
postgres_data: