-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
33 lines (28 loc) · 846 Bytes
/
Copy pathdocker-compose.yml
File metadata and controls
33 lines (28 loc) · 846 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
version: '3.8'
services:
mediachips:
build: .
container_name: mediachips
restart: unless-stopped
ports:
- "12321:12321"
volumes:
# Основные данные приложения
- ./app_storage:/app/app_storage
- ./public/config.json:/app/public/config.json
# Media folders. Replace host paths with your own directories.
- ./media/video:/media/video:ro
- ./media/movies:/media/movies:ro
- ./media/series:/media/series:ro
# Add more media folders if needed.
# - ./media/another_folder:/media/another:ro
environment:
- NODE_ENV=production
- TZ=UTC
# Docker needs LAN binding so the published port can accept host traffic.
- MEDIA_CHIPS_ALLOW_LAN=1
networks:
- media-network
networks:
media-network:
driver: bridge