forked from BastianGanze/weebsync
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
31 lines (28 loc) · 852 Bytes
/
docker-compose.yml
File metadata and controls
31 lines (28 loc) · 852 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
# WeebSync Local Docker Setup
services:
weebsync:
build:
context: .
dockerfile: Dockerfile
image: weebsync:local
container_name: weebsync
ports:
- "42380:42380"
environment:
NODE_ENV: production
WEEB_SYNC_SERVER_HTTP_PORT: 42380
volumes:
# Mount config with write permissions since app needs to create files
- ./server/config:/app/config
# Mount plugins directory for custom plugins
- ./plugins:/app/plugins
- weebsync-data:/app/data
# Media volume examples - uncomment and adjust paths as needed:
# - /path/to/your/anime:/media/anime
# - /path/to/your/movies:/media/movies
# - /path/to/downloads:/downloads
# - /mnt/media-drive:/media
# - /Volumes/ExternalDrive:/external
restart: unless-stopped
volumes:
weebsync-data: