-
-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Software title: NextCloud, Owncloud and Syncthing (#301)
* Software title: NextCloud and Syncthing * Add Ownloud * Fixes
- Loading branch information
1 parent
c6c3860
commit ce64ab6
Showing
14 changed files
with
407 additions
and
1 deletion.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,18 @@ | ||
=== "Access to the web interface" | ||
|
||
The web interface is accessible via port **8884**: | ||
|
||
- URL: `https://<your.IP>:8884` | ||
- Username/Password: There is none, but it is highly suggested setting a password for this container. To do this go to Actions -> Settings -> set user/password for the webUI. | ||
|
||
=== "Directories" | ||
|
||
- Install directory: `/armbian/syncthing` | ||
- Site configuration directory: `/armbian/syncthing/config` | ||
- Data directory: `/armbian/syncthing/data1` `/armbian/syncthing/data2` | ||
|
||
=== "View logs" | ||
|
||
```sh | ||
docker logs -f syncthing | ||
``` |
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 @@ | ||
Syncthing replaces proprietary sync and cloud services with something open, trustworthy and decentralized. Your data is your data alone and you deserve to choose where it is stored, if it is shared with some third party and how it's transmitted over the Internet. |
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,18 @@ | ||
=== "Access to the web interface" | ||
|
||
The web interface is accessible via port **443**: | ||
|
||
- URL: `https://<your.IP>:443` | ||
- Username/Password: admin / generate at first web interface login | ||
|
||
=== "Directories" | ||
|
||
- Install directory: `/armbian/nextcloud` | ||
- Site configuration directory: `/armbian/nextcloud/config` | ||
- Data directory: `/armbian/nextcloud/data` | ||
|
||
=== "View logs" | ||
|
||
```sh | ||
docker logs -f nextcloud | ||
``` |
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,3 @@ | ||
Nextcloud gives you access to all your files wherever you are. | ||
<br> | ||
Where are your photos and documents? With Nextcloud you pick a server of your choice, at home, in a data center or at a provider. And that is where your files will be. Nextcloud runs on that server, protecting your data and giving you access from your desktop or mobile devices. Through Nextcloud you also access, sync and share your existing data on that FTP drive at the office, a Dropbox or a NAS you have at home. |
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,18 @@ | ||
=== "Access to the web interface" | ||
|
||
The web interface is accessible via port **7787**: | ||
|
||
- URL: `http://<your.IP>:7787` | ||
- Username/Password: admin / admin | ||
|
||
=== "Directories" | ||
|
||
- Install directory: `/armbian/owncloud` | ||
- Site configuration directory: `/armbian/owncloud/config` | ||
- Data directory: `/armbian/owncloud/data` | ||
|
||
=== "View logs" | ||
|
||
```sh | ||
docker logs -f owncloud | ||
``` |
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 @@ | ||
ownCloud is a free and open-source software project for content collaboration and sharing and syncing of files in distributed and federated enterprise scenarios. |
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,84 @@ | ||
module_options+=( | ||
["module_nextcloud,author"]="" | ||
["module_nextcloud,maintainer"]="@igorpecovnik" | ||
["module_nextcloud,testers"]="@igorpecovnik" | ||
["module_nextcloud,feature"]="module_nextcloud" | ||
["module_nextcloud,desc"]="Install nextcloud container" | ||
["module_nextcloud,example"]="install remove purge status help" | ||
["module_nextcloud,port"]="443" | ||
["module_nextcloud,status"]="Active" | ||
["module_nextcloud,arch"]="x86-64,arm64" | ||
) | ||
# | ||
# Module nextcloud | ||
# | ||
function module_nextcloud () { | ||
local title="nextcloud" | ||
local condition=$(which "$title" 2>/dev/null) | ||
|
||
if check_if_installed docker-ce; then | ||
local container=$(docker container ls -a | mawk '/nextcloud?( |$)/{print $1}') | ||
local image=$(docker image ls -a | mawk '/nextcloud?( |$)/{print $3}') | ||
fi | ||
|
||
local commands | ||
IFS=' ' read -r -a commands <<< "${module_options["module_nextcloud,example"]}" | ||
|
||
NEXTCLOUD_BASE="${SOFTWARE_FOLDER}/nextcloud" | ||
|
||
case "$1" in | ||
"${commands[0]}") | ||
check_if_installed docker-ce || install_docker | ||
[[ -d "$NEXTCLOUD_BASE" ]] || mkdir -p "$NEXTCLOUD_BASE" || { echo "Couldn't create storage directory: $NEXTCLOUD_BASE"; exit 1; } | ||
docker run -d \ | ||
--name=nextcloud \ | ||
-e PUID=1000 \ | ||
-e PGID=1000 \ | ||
-e TZ="$(cat /etc/timezone)" \ | ||
-p 443:443 \ | ||
-v "${NEXTCLOUD_BASE}/config:/config" \ | ||
-v "${NEXTCLOUD_BASE}/data:/data" \ | ||
--restart unless-stopped \ | ||
lscr.io/linuxserver/nextcloud:latest | ||
for i in $(seq 1 20); do | ||
if docker inspect -f '{{ index .Config.Labels "build_version" }}' nextcloud >/dev/null 2>&1 ; then | ||
break | ||
else | ||
sleep 3 | ||
fi | ||
if [ $i -eq 20 ] ; then | ||
echo -e "\nTimed out waiting for ${title} to start, consult your container logs for more info (\`docker logs nextcloud\`)" | ||
exit 1 | ||
fi | ||
done | ||
;; | ||
"${commands[1]}") | ||
[[ "${container}" ]] && docker container rm -f "$container" >/dev/null | ||
[[ "${image}" ]] && docker image rm "$image" >/dev/null | ||
;; | ||
"${commands[2]}") | ||
[[ -n "${NEXTCLOUD_BASE}" && "${NEXTCLOUD_BASE}" != "/" ]] && rm -rf "${NEXTCLOUD_BASE}" | ||
;; | ||
"${commands[3]}") | ||
if [[ "${container}" && "${image}" ]]; then | ||
return 0 | ||
else | ||
return 1 | ||
fi | ||
;; | ||
"${commands[4]}") | ||
echo -e "\nUsage: ${module_options["module_nextcloud,feature"]} <command>" | ||
echo -e "Commands: ${module_options["module_nextcloud,example"]}" | ||
echo "Available commands:" | ||
echo -e "\tinstall\t- Install $title." | ||
echo -e "\tremove\t- Remove $title." | ||
echo -e "\tpurge\t- Purge $title data folder." | ||
echo -e "\tstatus\t- Installation status $title." | ||
|
||
echo | ||
;; | ||
*) | ||
${module_options["module_nextcloud,feature"]} ${commands[4]} | ||
;; | ||
esac | ||
} |
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,82 @@ | ||
module_options+=( | ||
["module_owncloud,author"]="@armbian" | ||
["module_owncloud,feature"]="module_owncloud" | ||
["module_owncloud,desc"]="Install owncloud container" | ||
["module_owncloud,example"]="install remove purge status help" | ||
["module_owncloud,port"]="7787" | ||
["module_owncloud,status"]="Active" | ||
["module_owncloud,arch"]="x86-64,arm64" | ||
) | ||
# | ||
# Module owncloud | ||
# | ||
function module_owncloud () { | ||
local title="owncloud" | ||
local condition=$(which "$title" 2>/dev/null) | ||
|
||
if check_if_installed docker-ce; then | ||
local container=$(docker container ls -a | mawk '/owncloud?( |$)/{print $1}') | ||
local image=$(docker image ls -a | mawk '/owncloud/{print $3}') | ||
fi | ||
|
||
local commands | ||
IFS=' ' read -r -a commands <<< "${module_options["module_owncloud,example"]}" | ||
|
||
OWNCLOUD_BASE="${SOFTWARE_FOLDER}/owncloud" | ||
|
||
case "$1" in | ||
"${commands[0]}") | ||
check_if_installed docker-ce || install_docker | ||
[[ -d "$OWNCLOUD_BASE" ]] || mkdir -p "$OWNCLOUD_BASE" || { echo "Couldn't create storage directory: $OWNCLOUD_BASE"; exit 1; } | ||
docker run -d \ | ||
--name=owncloud \ | ||
-e PUID=1000 \ | ||
-e PGID=1000 \ | ||
-e TZ="$(cat /etc/timezone)" \ | ||
-e "OWNCLOUD_TRUSTED_DOMAINS=${LOCALIPADD}" \ | ||
-p 7787:8080 \ | ||
-v "${OWNCLOUD_BASE}/config:/config" \ | ||
-v "${OWNCLOUD_BASE}/data:/mnt/data" \ | ||
--restart unless-stopped \ | ||
owncloud/server | ||
for i in $(seq 1 20); do | ||
if docker inspect -f '{{ index .Config.Labels "build_version" }}' owncloud >/dev/null 2>&1 ; then | ||
break | ||
else | ||
sleep 3 | ||
fi | ||
if [ $i -eq 20 ] ; then | ||
echo -e "\nTimed out waiting for ${title} to start, consult your container logs for more info (\`docker logs owncloud\`)" | ||
exit 1 | ||
fi | ||
done | ||
;; | ||
"${commands[1]}") | ||
[[ "${container}" ]] && docker container rm -f "$container" >/dev/null | ||
[[ "${image}" ]] && docker image rm "$image" >/dev/null | ||
;; | ||
"${commands[2]}") | ||
[[ -n "${OWNCLOUD_BASE}" && "${OWNCLOUD_BASE}" != "/" ]] && rm -rf "${OWNCLOUD_BASE}" | ||
;; | ||
"${commands[3]}") | ||
if [[ "${container}" && "${image}" ]]; then | ||
return 0 | ||
else | ||
return 1 | ||
fi | ||
;; | ||
"${commands[4]}") | ||
echo -e "\nUsage: ${module_options["module_owncloud,feature"]} <command>" | ||
echo -e "Commands: ${module_options["module_owncloud,example"]}" | ||
echo "Available commands:" | ||
echo -e "\tinstall\t- Install $title." | ||
echo -e "\tremove\t- Remove $title." | ||
echo -e "\tpurge\t- Purge $title data folder." | ||
echo -e "\tstatus\t- Installation status $title." | ||
echo | ||
;; | ||
*) | ||
${module_options["module_owncloud,feature"]} ${commands[4]} | ||
;; | ||
esac | ||
} |
Oops, something went wrong.