readme
This commit is contained in:
commit
a64e32ffe0
14 changed files with 339 additions and 0 deletions
32
NextCloud/compose.yml
Normal file
32
NextCloud/compose.yml
Normal file
|
@ -0,0 +1,32 @@
|
|||
services:
|
||||
|
||||
# Nextcloud
|
||||
nextcloud:
|
||||
image: nextcloud
|
||||
container_name: nextcloud
|
||||
restart: always
|
||||
ports:
|
||||
- "8081:80"
|
||||
networks:
|
||||
- cloud
|
||||
volumes:
|
||||
- ./nextcloud_data:/var/www/html
|
||||
environment:
|
||||
- PUID=1000
|
||||
- PGID=1000
|
||||
- REDIS_HOST=redis
|
||||
labels:
|
||||
tsdproxy.enable: "true"
|
||||
tsdproxy.name: "cloud"
|
||||
|
||||
redis:
|
||||
image: redis:alpine
|
||||
container_name: redis
|
||||
restart: always
|
||||
volumes:
|
||||
- ./redis:/data
|
||||
networks:
|
||||
- cloud
|
||||
|
||||
networks:
|
||||
cloud:
|
Loading…
Add table
Add a link
Reference in a new issue