-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcompose.yaml
More file actions
28 lines (25 loc) · 805 Bytes
/
compose.yaml
File metadata and controls
28 lines (25 loc) · 805 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
name: flixio
volumes:
flixio-data:
services:
flixio:
image: ipromknight/flixio-api:latest
ports:
- "5555:8080"
volumes:
- flixio-data:/app/data
environment:
FLIXIO_API_KEY: some-api-key
FLIXIO_CORS_ALLOWED_ORIGINS: "*"
FLIXIO_LOKI_LOGGING_FORMAT: "true"
# FLIXIO_CORS_ALLOWED_ORIGINS: http://localhost:8080;http://localhost:8081;http://localhost:8082
# FLIXIO_RESET_DATABASE: "true" (Set this to reset the database on next run)
stremio:
image: ipromknight/stremio-web:latest
environment:
API_ENDPOINT: http://localhost:5555
API_KEY: some-api-key # Same as FLIXIO_API_KEY
WEB_AUTH_KEY: some-auth # Auth key for web interface
entrypoint: /bin/sh -c "node http_server.js"
ports:
- "8080:8080"