forked from vanchaxy/plexio
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
38 lines (37 loc) · 822 Bytes
/
Copy pathdocker-compose.yml
File metadata and controls
38 lines (37 loc) · 822 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
29
30
31
32
33
34
35
36
37
38
services:
backend:
build: .
environment:
- MATCHING_PLEX_ADDRESS=http://plex:32400
env_file:
.env
ports:
- "8000:8000"
volumes:
- ./plexio:/app/plexio
command: uvicorn plexio.main:app --host 0.0.0.0 --port 8000 --reload
frontend:
build:
context: frontend
dockerfile: local.Dockerfile
ports:
- "3000:3000"
volumes:
- ./frontend/src:/app/src
- ./frontend/public:/app/public
command: npm start
plex:
image: plexinc/pms-docker
ports:
- "33333:32400"
volumes:
- ./dummy.mp4:/dummy/3u53SlRs3c - 1x1 - 3u53SlRs3c - 1080p.mp4
- plexconfig:/config
environment:
- ALLOWED_NETWORKS="172.0.0.0/255.0.0.0"
redis:
image: "redis:alpine"
ports:
- "6379:6379"
volumes:
plexconfig: