-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathcompose-example.yaml
More file actions
27 lines (24 loc) · 1.06 KB
/
Copy pathcompose-example.yaml
File metadata and controls
27 lines (24 loc) · 1.06 KB
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
# 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}
# Optional: route MAM traffic through a proxy such as Gluetun's built-in HTTP proxy.
# - MAM_PROXY_ENABLED=true
# - MAM_PROXY_URL=http://gluetun:8888
# - MAM_PROXY_ONLY=true
# - MAM_PROXY_FALLBACK_DIRECT=true