34 lines
741 B
YAML
34 lines
741 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:
|
|
- ${HOME}/.config/aria2:/config
|
|
- ${DOWNLOAD_PATH}:/downloads
|
|
restart: 'unless-stopped'
|
|
environment:
|
|
- PUID=${PUID}
|
|
- PGID=${PGID}
|
|
- UMASK_SET=022
|
|
- UPDATE_TRACKERS=true
|
|
- TZ=Asia/Shanghai
|
|
network_mode: host
|
|
|
|
ariang:
|
|
image: p3terx/ariang
|
|
container_name: ariang
|
|
command: --port ${ARIANG_PORT:-6880} --ipv6
|
|
logging:
|
|
driver: json-file
|
|
options:
|
|
max-size: 1m
|
|
restart: 'unless-stopped'
|
|
network_mode: host
|