Last active
February 25, 2023 06:57
-
-
Save xqm32/01e3a3367a2ec44359f0a22e064d5214 to your computer and use it in GitHub Desktop.
Docker Compose for AList
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# See https://alist.nn.ci/guide/install/docker.html | |
# See the log output for the admin's info: `docker exec -it alist ./alist admin` | |
version: '3.3' | |
services: | |
alist: | |
restart: always | |
volumes: | |
- './config:/opt/alist/data' | |
- '/root/service/data:/data' | |
ports: | |
- '5244:5244' | |
environment: | |
- PUID=0 | |
- PGID=0 | |
- UMASK=022 | |
container_name: alist | |
image: 'xhofe/alist-aria2:latest' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment