torrents-csv docker image
7.1K
version: '3.7'
networks:
# communication to web and clients
torrentsexternalproxy:
# communication between lemmy services
torrentsinternal:
driver: bridge
internal: true
services:
proxy:
image: nginx:1-alpine
networks:
- torrentsinternal
- torrentsexternalproxy
ports:
# actual and only port facing any connection from outside
- "8904:8904"
volumes:
- ./nginx.conf:/etc/nginx/nginx.conf:ro
restart: always
depends_on:
- torrents-csv
- torrents-csv-ui-perseus
torrents-csv:
image: martadinata666/torrents-csv:latest
restart: always
hostname: torrents-csv
networks:
- torrentsinternal
environment:
TORRENTS_CSV_DB_FILE: /app/torrents.db
TORRENTS_CSV_FRONT_END_DIR: /app/dist
torrents-csv-ui-perseus:
image: martadinata666/torrents-csv:ui
restart: always
networks:
- torrentsinternal
environment:
PERSEUS_HOST: "0.0.0.0"
TORRENTS_CSV_ENDPOINT: "http://torrents-csv:8902"
Content type
Image
Digest
sha256:ce0f51cb6…
Size
195.1 MB
Last updated
over 1 year ago
docker pull martadinata666/torrents-csv