-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathcompose-example.yaml
More file actions
22 lines (19 loc) · 842 Bytes
/
compose-example.yaml
File metadata and controls
22 lines (19 loc) · 842 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# Copy this file to compose.yaml before running `docker compose up -d`.
services:
mousesearch:
image: sevenlayercookie/mousesearch:latest
container_name: mousesearch
restart: unless-stopped
ports:
- "5000:5000"
volumes:
- ./data:/data # location that config, cache, and state files will be stored
- /downloads:/downloads # required if LOCAL_TORRENT_DOWNLOAD_PATH or ORGANIZED_PATH live under /downloads
# If your torrent client reports a different in-container path, set
# REMOTE_TORRENT_DOWNLOAD_PATH in .env to that client-visible path.
env_file: .env # optional: load environment variables from a file
environment:
- TZ=America/Chicago
# Change these to match your host user (run 'id' in terminal to check)
- PUID=${PUID:-1000}
- PGID=${PGID:-1000}