Add Micro Configurations (#18)

* Begin changing files to recommendations rather than actual contents, that way multiple examples can be shown and when they are changed to be the real .yml they are not added to the project.

* Shrink the PHP limits more.

* Convert all configurations to be micro/standard.

* Double check the script supports IPv6. Shrink case statement.

* Fix uncommented nc-oo.

* Shrink NC further.

* Change name of env example.

* Change name of env example.

* Do not provide micro versions of DNS or PhotoPrism.

* Fix error in NC checks, wants at least 512M.

* Shrink more.

* Add a folder to keep static resources.

* Copy static resources into the container. This unfortunately doubles the size right now. Maybe do a volume in the future.

* Bring the description up to date.

* Make the description slightly more agnostic.

* Be more consistent about using variable.
This commit is contained in:
2024-01-24 11:05:44 +00:00
committed by GitHub
parent 08a4d93282
commit fa892cb3bd
17 changed files with 280 additions and 40 deletions

View File

@ -144,9 +144,9 @@ if [[ -n $up || -n $down || -n $build || -n $pull ]]; then
pwd
# Ensure .env files exist so that all compose variables are populated.
if [[ -e ./env.example && ! -e ./.env ]]; then
echo "WARNING: .env file was not found, copying example as placeholder."
cp -v env.example .env
if [[ -e ./env.standard && ! -e ./.env ]]; then
echo "WARNING: .env file was not found, copying standard as placeholder."
cp -v env.standard .env
fi
# Ensure all configuration files have been created.