-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
GitHub Workflow
committed
Jan 28, 2025
1 parent
a9932c3
commit b1fa655
Showing
61 changed files
with
446 additions
and
79 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
71 changes: 71 additions & 0 deletions
71
community-containers/borgbackup-viewer/borgbackup-viewer.json
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,71 @@ | ||
{ | ||
"aio_services_v1": [ | ||
{ | ||
"container_name": "nextcloud-aio-borgbackup-viewer", | ||
"image_tag": "v1", | ||
"display_name": "Borg Backup Viewer", | ||
"documentation": "https://github.com/nextcloud/all-in-one/tree/main/community-containers/borgbackup-viewer", | ||
"image": "szaimen/aio-borgbackup-viewer", | ||
"internal_port": "5801", | ||
"ports": [ | ||
{ | ||
"ip_binding": "", | ||
"port_number": "5801", | ||
"protocol": "tcp" | ||
} | ||
], | ||
"environment": [ | ||
"BORG_HOST_ID=nextcloud-aio-borgbackup-viewer", | ||
"WEB_AUTHENTICATION_USERNAME=nextcloud", | ||
"WEB_AUTHENTICATION_PASSWORD=%BORGBACKUP_VIEWER_PASSWORD%", | ||
"WEB_LISTENING_PORT=5801", | ||
"BORG_PASSPHRASE=%BORGBACKUP_PASSWORD%", | ||
"BORG_REPO=/mnt/borgbackup/borg" | ||
], | ||
"secrets": [ | ||
"BORGBACKUP_VIEWER_PASSWORD", | ||
"BORGBACKUP_PASSWORD" | ||
], | ||
"ui_secret": "BORGBACKUP_VIEWER_PASSWORD", | ||
"volumes": [ | ||
{ | ||
"source": "nextcloud_aio_backup_cache", | ||
"destination": "/root", | ||
"writeable": true | ||
}, | ||
{ | ||
"source": "%NEXTCLOUD_DATADIR%", | ||
"destination": "/nextcloud_aio_volumes/nextcloud_aio_nextcloud_data", | ||
"writeable": true | ||
}, | ||
{ | ||
"source": "nextcloud_aio_mastercontainer", | ||
"destination": "/nextcloud_aio_volumes/nextcloud_aio_mastercontainer", | ||
"writeable": true | ||
}, | ||
{ | ||
"source": "%BORGBACKUP_HOST_LOCATION%", | ||
"destination": "/mnt/borgbackup", | ||
"writeable": true | ||
}, | ||
{ | ||
"source": "nextcloud_aio_elasticsearch", | ||
"destination": "/nextcloud_aio_volumes/nextcloud_aio_elasticsearch", | ||
"writeable": true | ||
}, | ||
{ | ||
"source": "nextcloud_aio_redis", | ||
"destination": "/mnt/redis", | ||
"writeable": true | ||
} | ||
], | ||
"devices": [ | ||
"/dev/fuse" | ||
], | ||
"cap_add": [ | ||
"SYS_ADMIN" | ||
], | ||
"apparmor_unconfined": 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,17 @@ | ||
## Borgbackup Viewer | ||
This container allows to view the local borg repository in a web session. It also allows you to restore files and folders from the backup by using desktop programs in a web browser. | ||
|
||
### Notes | ||
- After adding and starting the container, you need to visit `https://ip.address.of.this.server:5801` in order to log in with the user `nextcloud` and the password that you can see next to the container in the AIO interface. (The web page uses a self-signed certificate, so you need to accept the warning). | ||
- Then, you should see a terminal. There type in `borg mount /mnt/borgbackup/borg /tmp/borg` to mount the backup archive at `/tmp/borg` inside the container. Afterwards type in `nautilus /tmp/borg` which will show a file explorer and allows you to see all the files. You can then copy files and folders back to their initial mountpoints inside `/nextcloud_aio_volumes/`, `/host_mounts/` and `/docker_volumes/`. ⚠️ Be very carefully while doing that as can break your instance! | ||
- After you are done with the operation, click on the terminal in the background and press `[CTRL]+[c]` multiple times to close any open application. Then run `umount /tmp/borg` to unmount the mountpoint correctly. | ||
- You can also delete specific archives by running `borg list`, delete a specific archive e.g. via `borg delete --stats --progress "::20220223_174237-nextcloud-aio"` and compact the archives via `borg compact`. After doing so, make sure to update the backup archives list in the AIO interface! You can do so by clicking on the `Check backup integrity` button or `Create backup` button. | ||
- ⚠️ After you are done doing your operations, remove the container for better security again from the stack: https://github.com/nextcloud/all-in-one/tree/main/community-containers#how-to-remove-containers-from-aios-stack | ||
- See https://github.com/nextcloud/all-in-one/tree/main/community-containers#community-containers how to add it to the AIO stack | ||
|
||
### Repository | ||
https://github.com/szaimen/aio-borgbackup-viewer | ||
|
||
### Maintainer | ||
https://github.com/szaimen | ||
|
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,34 @@ | ||
{ | ||
"aio_services_v1": [ | ||
{ | ||
"container_name": "nextcloud-aio-jellyseerr", | ||
"display_name": "Jellyseerr", | ||
"documentation": "https://github.com/nextcloud/all-in-one/tree/main/community-containers/jellyseerr", | ||
"image": "fallenbagel/jellyseerr", | ||
"image_tag": "latest", | ||
"internal_port": "5055", | ||
"restart": "unless-stopped", | ||
"ports": [ | ||
{ | ||
"ip_binding": "%APACHE_IP_BINDING%", | ||
"port_number": "5055", | ||
"protocol": "tcp" | ||
} | ||
], | ||
"environment": [ | ||
"PORT=5055", | ||
"TZ=%TIMEZONE%" | ||
], | ||
"volumes": [ | ||
{ | ||
"source": "nextcloud_aio_jellyseerr", | ||
"destination": "/app/config", | ||
"writeable": true | ||
} | ||
], | ||
"backup_volumes": [ | ||
"nextcloud_aio_jellyseerr" | ||
] | ||
} | ||
] | ||
} |
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,16 @@ | ||
## Jellyseerr | ||
This container bundles Jellyseerr and auto-configures it for you. | ||
|
||
### Notes | ||
- This container is only intended to be used inside home networks as it uses http for its management page by default. | ||
- After adding and starting the container, you can directly visit `http://ip.address.of.server:5055` and access your new Jellyseerr instance, which can be used to manage Plex, Jellyfin, and Emby. | ||
- In order to access your Jellyseerr outside the local network, you have to set up your own reverse proxy. You can set up a reverse proxy following [these instructions](https://github.com/nextcloud/all-in-one/blob/main/reverse-proxy.md) and [Jellyseerr's reverse proxy documentation.](https://docs.jellyseerr.dev/extending-jellyseerr/reverse-proxy), OR use the Caddy community container that will automatically configure requests.$NC_DOMAIN to redirect to your Jellyseerr. | ||
- If you want to secure the installation with fail2ban, you might want to check out https://github.com/nextcloud/all-in-one/tree/main/community-containers/fail2ban | ||
- The config of Jellyseerr will be automatically included in AIO's backup solution! | ||
- See [here](https://github.com/nextcloud/all-in-one/tree/main/community-containers#community-containers) how to add it to the AIO stack. | ||
|
||
### Repository | ||
https://github.com/Fallenbagel/jellyseerr | ||
|
||
### Maintainer | ||
https://github.com/Anvil5465 |
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,59 @@ | ||
{ | ||
"aio_services_v1": [ | ||
{ | ||
"container_name": "nextcloud-aio-makekv", | ||
"display_name": "MakeMKV", | ||
"documentation": "https://github.com/nextcloud/all-in-one/tree/main/community-containers/makemkv", | ||
"image": "jlesage/makemkv", | ||
"image_tag": "latest", | ||
"internal_port": "5802", | ||
"restart": "unless-stopped", | ||
"ports": [ | ||
{ | ||
"ip_binding": "", | ||
"port_number": "5802", | ||
"protocol": "tcp" | ||
} | ||
], | ||
"volumes": [ | ||
{ | ||
"source": "nextcloud_aio_makemkv", | ||
"destination": "/config", | ||
"writeable": true | ||
}, | ||
{ | ||
"source": "%NEXTCLOUD_DATADIR%", | ||
"destination": "/storage", | ||
"writeable": false | ||
}, | ||
{ | ||
"source": "%NEXTCLOUD_MOUNT%", | ||
"destination": "/output", | ||
"writeable": true | ||
}, | ||
{ | ||
"source": "/dev", | ||
"destination": "/dev", | ||
"writeable": false | ||
} | ||
], | ||
"environment": [ | ||
"TZ=%TIMEZONE%", | ||
"SECURE_CONNECTION=1", | ||
"WEB_AUTHENTICATION=1", | ||
"USER_ID=33", | ||
"GROUP_ID=33", | ||
"WEB_AUTHENTICATION_USERNAME=makemkv", | ||
"WEB_AUTHENTICATION_PASSWORD=%MAKEMKV_PASSWORD%", | ||
"WEB_LISTENING_PORT=5802" | ||
], | ||
"secrets": [ | ||
"MAKEMKV_PASSWORD" | ||
], | ||
"ui_secret": "MAKEMKV_PASSWORD", | ||
"backup_volumes": [ | ||
"nextcloud_aio_makemkv" | ||
] | ||
} | ||
] | ||
} |
Oops, something went wrong.