all-in-one/community-containers
Simon L. 4def229eea add scrutiny community container
Signed-off-by: Simon L. <szaimen@e.mail.de>
2025-01-22 13:43:18 +01:00
..
borgbackup-viewer add borgbackup-viewer community container 2025-01-22 12:17:55 +01:00
caddy Add Jellyseerr Community Container (#5911) 2025-01-22 11:07:39 +01:00
calcardbackup add calcardbackup community container (#5864) 2025-01-14 10:43:36 +01:00
dlna docs: remove hint that network_mode host does not work on Docker Desktop 2024-09-19 14:36:54 +02:00
facerecognition facerecognition: document fixed 1G value 2025-01-06 11:34:43 +01:00
fail2ban Add Jellyseerr Community Container (#5911) 2025-01-22 11:07:39 +01:00
jellyfin fail2ban-cc: add jellyfin 2025-01-15 13:48:06 +01:00
jellyseerr Add Jellyseerr Community Container (#5911) 2025-01-22 11:07:39 +01:00
libretranslate
lldap
local-ai Merge pull request #5803 from nextcloud/enh/5132/disable-eng-local-ai 2025-01-06 10:57:05 +01:00
makemkv community-containers: add makemkv 2025-01-22 12:17:02 +01:00
memories add support for nvidia gpu access (#5132) 2024-12-20 11:12:59 +01:00
nocodb
npmplus Update NPMplus community container readme.md 2025-01-19 14:25:51 +01:00
pi-hole
plex add support for nvidia gpu access (#5132) 2024-12-20 11:12:59 +01:00
scrutiny add scrutiny community container 2025-01-22 13:43:18 +01:00
stalwart
vaultwarden
readme.md Fix it 2024-09-12 17:49:12 +02:00

Community containers

This directory features containers that are built for AIO which allows to add additional functionality very easily.

Disclaimers

All containers that are in this directory are community maintained so the responsibility is on the community to keep them updated and secure. There is no guarantee that this will be the case in the future.

How to use this?

Before adding any additional container, make sure to create a backup via the AIO interface!

Afterwards, you might want to add additional community containers to the default AIO stack. You can do so by adding --env AIO_COMMUNITY_CONTAINERS="container1 container2" to the docker run command of the mastercontainer (but before the last line nextcloud/all-in-one:latest! If it was started already, you will need to stop the mastercontainer, remove it (no data will be lost) and recreate it using the docker run command that you initially used) and customize the value to your fitting. It must match the folder names in this directory! ⚠️⚠️⚠️ Please review the folder for documentation on each of the containers before adding them! Not reviewing the documentation for each of them first might break starting the AIO containers because e.g. fail2ban only works on Linux and not on Docker Desktop! Hint: If the containers where running already, in order to actually start the added container, you need to click on Stop containers and the Update and start containers in order to actually start it.

How to add containers?

Simply submit a PR by creating a new folder in this directory: https://github.com/nextcloud/all-in-one/tree/main/community-containers with the name of your container. It must include a json file with the same name and with correct syntax and a readme.md with additional information. You might get inspired by caddy, fail2ban, local-ai, libretranslate, plex, pi-hole or vaultwarden (subfolders in this directory). For a full-blown example of the json file, see https://github.com/nextcloud/all-in-one/blob/main/php/containers.json. The json-schema that it validates against can be found here: https://github.com/nextcloud/all-in-one/blob/main/php/containers-schema.json.

Is there a list of ideas for new community containers?

Yes, see this list for already existing ideas for new community containers. Feel free to pick one up and add it to this folder by following the instructions above.

How to remove containers from AIOs stack?

In some cases, you might want to remove some community containers from the AIO stack again. Here is how to do this.

First, do a backup from the AIO interface in order to save the current state. Do not start the containers again afterwards! Now simply recreate the mastercontainer and remove any container from the --env AIO_COMMUNITY_CONTAINERS="container1 container2" that you do not actually need. If you want to remove all, simply use --env AIO_COMMUNITY_CONTAINERS=" ".

After removing the containers, there might be some data left on your server that you might want to remove. You can get rid of the data by first running sudo docker rm nextcloud-aio-container1, (adjust container1 accordingly) per community-container that you removed. Then run sudo docker image prune -a in order to remove all images that are not used anymore. As last step you can get rid of persistent data of these containers that is stored in volumes. You can check if there is some by running sudo docker volume ls and look for any volume that matches the ones that you removed. If so, you can remove them with sudo docker volume rm nextcloud_aio_volume-id (of course you need to adjust the volume-id).