added separate folders for nitter and rss-proxy

This commit is contained in:
2023-07-23 11:08:27 -05:00
parent 9375c1b335
commit 304822ae42
5 changed files with 86 additions and 77 deletions
+32
View File
@@ -0,0 +1,32 @@
version: '3'
services:
rich-puppeteer:
container_name: rich-puppeteer
image: damoeb/rich-rss:puppeteer-0.1
restart: always
security_opt:
- seccomp=chrome.json
networks:
- puppeteer
rss-proxy:
container_name: rss-proxy
image: damoeb/rss-proxy:2.0.0-beta
restart: always
depends_on:
- rich-puppeteer
ports:
- "8080:8080"
environment:
- LOG_LEVEL=info
# -- CHANGE THIS --
- APP_PUBLIC_URL=http://localhost:8080
- TOKEN_SECRET=1234_top_secret
- PUPPETEER_HOST=http://rich-puppeteer:3000
networks:
- puppeteer
networks:
puppeteer:
driver: bridge