Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master'
Browse files Browse the repository at this point in the history
  • Loading branch information
HFO4 committed Jun 25, 2023
2 parents 91025b9 + a9bee3e commit 9f6f9ad
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
version: "3.8"
services:
redis:
container_name: redis
image: bitnami/redis:latest
restart: unless-stopped
environment:
- ALLOW_EMPTY_PASSWORD=yes
volumes:
- redis_data:/bitnami/redis/data

cloudreve:
container_name: cloudreve
image: cloudreve/cloudreve:latest
Expand All @@ -14,6 +23,7 @@ services:
- ./cloudreve/avatar:/cloudreve/avatar
depends_on:
- aria2

aria2:
container_name: aria2
image: p3terx/aria2-pro # third party image, please keep notice what you are doing
Expand All @@ -25,9 +35,11 @@ services:
- ./aria2/config:/config
- temp_data:/data
volumes:
redis_data:
driver: local
temp_data:
driver: local
driver_opts:
type: none
device: $PWD/data
o: bind
o: bind

0 comments on commit 9f6f9ad

Please sign in to comment.