mirror of
https://github.com/GopeedLab/gopeed.git
synced 2026-06-05 11:09:23 +08:00
13 lines
351 B
YAML
13 lines
351 B
YAML
version: '3'
|
|
|
|
services:
|
|
gopeed:
|
|
container_name: gopeed
|
|
ports:
|
|
- "9999:9999" # HTTP port (host:container)
|
|
image: liwei2633/gopeed
|
|
volumes:
|
|
- ~/gopeed/Downloads:/root/Downloads # mount download path
|
|
#- ~/gopeed/storage:/app/storage # if you need to mount storage path, uncomment this line
|
|
restart: unless-stopped
|