-
Notifications
You must be signed in to change notification settings - Fork 285
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into app/AnythingLLM
- Loading branch information
Showing
38 changed files
with
299 additions
and
131 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
{ | ||
"$schema": "../schema.json", | ||
"name": "Nextcloud Mini", | ||
"id": "nextcloud-mini", | ||
"available": true, | ||
"short_desc": "A safe home for all your data.", | ||
"author": "nextcloud", | ||
"port": 8564, | ||
"categories": ["data"], | ||
"description": "The most popular open source content collaboration platform for tens of millions of users at thousands of organizations across the globe.", | ||
"tipi_version": 2, | ||
"version": "29.0.5-apache", | ||
"source": "https://github.com/nextcloud/server", | ||
"website": "https://nextcloud.com", | ||
"exposable": true, | ||
"supported_architectures": ["arm64", "amd64"], | ||
"form_fields": [ | ||
{ | ||
"type": "text", | ||
"label": "Nextcloud user", | ||
"hint": "The username which you will use to sign in to nextcloud.", | ||
"required": true, | ||
"env_variable": "NEXTCLOUD_MINI_ADMIN_USER" | ||
}, | ||
{ | ||
"type": "password", | ||
"label": "Nextcloud password", | ||
"hint": "The password which you will use to sign in to nextcloud.", | ||
"required": true, | ||
"env_variable": "NEXTCLOUD_MINI_ADMIN_PASSWORD" | ||
}, | ||
{ | ||
"type": "text", | ||
"label": "Nextcloud trusted domains", | ||
"hint": "Add all of your trusted domains separated by a space.", | ||
"required": false, | ||
"env_variable": "NEXTCLOUD_MINI_TRUSTED_DOMAINS" | ||
}, | ||
{ | ||
"type": "random", | ||
"label": "Nextcloud database password", | ||
"min": 32, | ||
"env_variable": "NEXTCLOUD_MINI_DB_PASSWORD" | ||
} | ||
], | ||
"created_at": 1724969173127, | ||
"updated_at": 1724969173127, | ||
"dynamic_config": true | ||
} |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
{ | ||
"services": [ | ||
{ | ||
"name": "nextcloud-mini", | ||
"image": "nextcloud:29.0.5-apache", | ||
"internalPort": 80, | ||
"isMain": true, | ||
"volumes": [ | ||
{ | ||
"hostPath": "${APP_DATA_DIR}/data/nextcloud", | ||
"containerPath": "/var/www/html" | ||
} | ||
], | ||
"environment": { | ||
"POSTGRES_HOST": "nextcloud-mini-db", | ||
"POSTGRES_DB": "nextcloud", | ||
"POSTGRES_USER": "nextcloud", | ||
"POSTGRES_PASSWORD": "${NEXTCLOUD_MINI_DB_PASSWORD}", | ||
"NEXTCLOUD_ADMIN_PASSWORD": "${NEXTCLOUD_MINI_ADMIN_PASSWORD}", | ||
"NEXTCLOUD_ADMIN_USER": "${NEXTCLOUD_MINI_ADMIN_USER}", | ||
"NEXTCLOUD_TRUSTED_DOMAINS": "${NEXTCLOUD_MINI_TRUSTED_DOMAINS}" | ||
} | ||
}, | ||
{ | ||
"name": "nextcloud-mini-db", | ||
"image": "postgres:16", | ||
"volumes": [ | ||
{ | ||
"hostPath": "${APP_DATA_DIR}/data/db", | ||
"containerPath": "/var/lib/postgresql/data" | ||
} | ||
], | ||
"environment": { | ||
"POSTGRES_DB": "nextcloud", | ||
"POSTGRES_USER": "nextcloud", | ||
"POSTGRES_PASSWORD": "${NEXTCLOUD_MINI_DB_PASSWORD}" | ||
} | ||
} | ||
] | ||
} |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
services: | ||
nextcloud-mini: | ||
container_name: nextcloud-mini | ||
image: nextcloud:29.0.5-apache | ||
restart: unless-stopped | ||
ports: | ||
- ${APP_PORT}:80 | ||
volumes: | ||
- ${APP_DATA_DIR}/data/nextcloud:/var/www/html | ||
environment: | ||
- POSTGRES_HOST=nextcloud-mini-db | ||
- POSTGRES_DB=nextcloud | ||
- POSTGRES_USER=nextcloud | ||
- POSTGRES_PASSWORD=${NEXTCLOUD_MINI_DB_PASSWORD} | ||
- NEXTCLOUD_ADMIN_PASSWORD=${NEXTCLOUD_MINI_ADMIN_PASSWORD} | ||
- NEXTCLOUD_ADMIN_USER=${NEXTCLOUD_MINI_ADMIN_USER} | ||
- NEXTCLOUD_TRUSTED_DOMAINS=${NEXTCLOUD_MINI_TRUSTED_DOMAINS} | ||
networks: | ||
- tipi_main_network | ||
labels: | ||
# Main | ||
traefik.enable: true | ||
traefik.http.middlewares.nextcloud-mini-web-redirect.redirectscheme.scheme: https | ||
traefik.http.services.nextcloud-mini.loadbalancer.server.port: 80 | ||
# Web | ||
traefik.http.routers.nextcloud-mini-insecure.rule: Host(`${APP_DOMAIN}`) | ||
traefik.http.routers.nextcloud-mini-insecure.entrypoints: web | ||
traefik.http.routers.nextcloud-mini-insecure.service: nextcloud-mini | ||
traefik.http.routers.nextcloud-mini-insecure.middlewares: nextcloud-mini-web-redirect | ||
# Websecure | ||
traefik.http.routers.nextcloud-mini.rule: Host(`${APP_DOMAIN}`) | ||
traefik.http.routers.nextcloud-mini.entrypoints: websecure | ||
traefik.http.routers.nextcloud-mini.service: nextcloud-mini | ||
traefik.http.routers.nextcloud-mini.tls.certresolver: myresolver | ||
# Local domain | ||
traefik.http.routers.nextcloud-mini-local-insecure.rule: Host(`nextcloud-mini.${LOCAL_DOMAIN}`) | ||
traefik.http.routers.nextcloud-mini-local-insecure.entrypoints: web | ||
traefik.http.routers.nextcloud-mini-local-insecure.service: nextcloud-mini | ||
traefik.http.routers.nextcloud-mini-local-insecure.middlewares: nextcloud-mini-web-redirect | ||
# Local domain secure | ||
traefik.http.routers.nextcloud-mini-local.rule: Host(`nextcloud-mini.${LOCAL_DOMAIN}`) | ||
traefik.http.routers.nextcloud-mini-local.entrypoints: websecure | ||
traefik.http.routers.nextcloud-mini-local.service: nextcloud-mini | ||
traefik.http.routers.nextcloud-mini-local.tls: true | ||
# Runtipi managed | ||
runtipi.managed: true | ||
|
||
nextcloud-mini-db: | ||
container_name: nextcloud-mini-db | ||
image: postgres:16 | ||
restart: unless-stopped | ||
volumes: | ||
- ${APP_DATA_DIR}/data/db:/var/lib/postgresql/data | ||
environment: | ||
- POSTGRES_DB=nextcloud | ||
- POSTGRES_USER=nextcloud | ||
- POSTGRES_PASSWORD=${NEXTCLOUD_MINI_DB_PASSWORD} | ||
networks: | ||
- tipi_main_network | ||
labels: | ||
# Runtipi managed | ||
runtipi.managed: true |
Oops, something went wrong.