mirror of
https://github.com/wahyd4/aria2-ariang-x-docker-compose.git
synced 2026-08-09 05:07:02 +10:00
33 lines
654 B
YAML
33 lines
654 B
YAML
version: '2'
|
|
|
|
services:
|
|
nextcloud:
|
|
image: wonderfall/nextcloud
|
|
volumes:
|
|
- ./data/nextcloud:/data:rw
|
|
- ./data:/user-files:rw
|
|
restart: always
|
|
aria2:
|
|
image: wahyd4/aria2-ui:nextcloud
|
|
ports:
|
|
- "8000:80"
|
|
- "6800:6800"
|
|
- "443:443"
|
|
volumes:
|
|
- ./data:/user-files:rw
|
|
# volumes:
|
|
# - /some_folder:/root/conf/key
|
|
# - ~/test/aria2.conf:/root/conf/aria2.conf
|
|
environment:
|
|
- DOMAIN=:80
|
|
# - SSL=true
|
|
# - RPC_SECRET=Hello
|
|
# - ARIA2_USER=admin
|
|
# - ARIA2_PWD=password
|
|
# - ENABLE_AUTH=true
|
|
links:
|
|
- nextcloud:file-manager
|
|
restart: always
|
|
|
|
|