mirror of
https://github.com/knightcrawler-stremio/knightcrawler.git
synced 2024-12-20 03:29:51 +00:00
First self-hosted release
This commit is contained in:
30
addon/hosted/docker-compose.yml
Normal file
30
addon/hosted/docker-compose.yml
Normal file
@@ -0,0 +1,30 @@
|
||||
version: '2'
|
||||
|
||||
services:
|
||||
mongodb:
|
||||
image: docker.io/bitnami/mongodb:7.0
|
||||
ports:
|
||||
- "27017:27017"
|
||||
volumes:
|
||||
- 'mongodb_data:/bitnami/mongodb'
|
||||
scraper:
|
||||
build: ./
|
||||
volumes:
|
||||
- 'sqlite_data:/sqlite'
|
||||
torrentio:
|
||||
build: ../
|
||||
volumes:
|
||||
- 'sqlite_data:/sqlite'
|
||||
ports:
|
||||
- "7000:7000"
|
||||
links:
|
||||
- "mongodb:mongodb"
|
||||
environment:
|
||||
- MONGODB_URI=mongodb://mongodb:27017/torrentio
|
||||
- DATABASE_URI=sqlite:/sqlite/torrentio.sqlite
|
||||
|
||||
volumes:
|
||||
mongodb_data:
|
||||
driver: local
|
||||
sqlite_data:
|
||||
driver: local
|
||||
Reference in New Issue
Block a user