Bot Updating Documentation

pull/12/head
LinuxServer-CI 2020-04-26 16:25:24 +00:00
rodzic 47e230e0a3
commit b430706619
1 zmienionych plików z 2 dodań i 19 usunięć

Wyświetl plik

@ -43,13 +43,7 @@ docker create \
-e fleet_database_url=jdbc:mariadb://<url>:3306/fleet \
-e fleet_database_username=fleet_user \
-e fleet_database_password=dbuserpassword \
-e fleet_dockerhub_username=dockerhub_user \
-e fleet_dockerhub_password=password \
-e fleet_refresh_interval=60 `#optional` \
-e fleet_admin_secret=randomstring `#optional` \
-e fleet_admin_username=admin `#optional` \
-e fleet_admin_password=secretpassword `#optional` \
-e fleet_skip_sync_on_startup=true `#optional` \
-p 8080:8080 \
-v </path/to/appdata/config>:/config \
--restart unless-stopped \
@ -75,13 +69,7 @@ services:
- fleet_database_url=jdbc:mariadb://<url>:3306/fleet
- fleet_database_username=fleet_user
- fleet_database_password=dbuserpassword
- fleet_dockerhub_username=dockerhub_user
- fleet_dockerhub_password=password
- fleet_refresh_interval=60 #optional
- fleet_admin_secret=randomstring #optional
- fleet_admin_username=admin #optional
- fleet_admin_password=secretpassword #optional
- fleet_skip_sync_on_startup=true #optional
volumes:
- </path/to/appdata/config>:/config
ports:
@ -110,13 +98,7 @@ Docker images are configured using parameters passed at runtime (such as those a
| `fleet_database_url=jdbc:mariadb://<url>:3306/fleet` | The full JDBC connection string to the Fleet database |
| `fleet_database_username=fleet_user` | The username with the relevant GRANT permissions for the database |
| `fleet_database_password=dbuserpassword` | The database user's password. |
| `fleet_dockerhub_username=dockerhub_user` | The username of a member of your repository's owners team. This is used to get the list of your (and only your) namespaces in Docker Hub. |
| `fleet_dockerhub_password=password` | The password for the Docker Hub user. |
| `fleet_refresh_interval=60` | The time in minutes for how often Fleet should scan the Docker Hub repositories. |
| `fleet_admin_secret=randomstring` | A string used as part of the password key derivation process. Not mandatory. Only used if authentication type is set to DATABASE. |
| `fleet_admin_username=admin` | The name of the sole admin user, if authentication type is set to PROPERTIES. |
| `fleet_admin_password=secretpassword` | The password for the sole admin user, if authentication type is set to PROPERTIES. |
| `fleet_skip_sync_on_startup=true` | A flag to tell the app not to run an initial synchronisation process when it starts up |
| `fleet_admin_secret=randomstring` | A string used as part of the password key derivation process. |
### Volume Mappings (`-v`)
@ -166,6 +148,7 @@ We publish various [Docker Mods](https://github.com/linuxserver/docker-mods) to
## Versions
* **26.04.20:** - Updated to keep in line with v2.0.0 branch of Fleet
* **19.12.19:** - Rebasing to alpine 3.11.
* **02.07.19:** - Rebasing to alpine 3.10.
* **02.07.19:** - Stop container if fleet fails.