37 lines
721 B
YAML
37 lines
721 B
YAML
# merged.
|
|
# for manual deploy, see https://www.cnblogs.com/wqp001/p/14709997.html
|
|
|
|
services:
|
|
aria2:
|
|
image: p3terx/aria2-pro
|
|
container_name: aria2
|
|
logging:
|
|
driver: json-file
|
|
options:
|
|
max-size: 1m
|
|
volumes:
|
|
- /opt/aria2:/config
|
|
- type: bind
|
|
source: $HOME/_downloads
|
|
target: /downloads
|
|
restart: 'unless-stopped'
|
|
environment:
|
|
- PUID=$UID
|
|
- PGID=$UID
|
|
- UMASK_SET=022
|
|
ports:
|
|
- 16800:6800
|
|
- 16888:6888
|
|
- 16888:6888/udp
|
|
ariang:
|
|
image: p3terx/ariang
|
|
container_name: ariang
|
|
logging:
|
|
driver: json-file
|
|
options:
|
|
max-size: 1m
|
|
restart: 'unless-stopped'
|
|
ports:
|
|
- 16880:6880
|
|
|