Disable auto updates helm and docker-compose doc (#13443)

This commit is contained in:
Sumesh Pradhan 2022-04-29 17:16:37 +05:30 committed by GitHub
parent 9b9048fdc4
commit 511278f067
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 15 additions and 9 deletions

View File

@ -48,16 +48,22 @@ services:
- "9001:9001"
volumes:
- ./stacks:/appsmith-stacks
labels:
com.centurylinklabs.watchtower.enable: "true"
restart: unless-stopped
# # Uncomment the lines below to enable auto-update
# labels:
# com.centurylinklabs.watchtower.enable: "true"
# auto_update:
# image: containrrr/watchtower:latest-dev
# volumes:
# - /var/run/docker.sock:/var/run/docker.sock
# # Update check interval in seconds.
# command: --schedule "0 0 * ? * *" --label-enable --cleanup
# restart: unless-stopped
auto_update:
image: containrrr/watchtower
volumes:
- /var/run/docker.sock:/var/run/docker.sock
# Update check every hour.
command: --schedule "0 0 * ? * *" --label-enable --cleanup
```
>>Note: To enable auto-update for Appsmith, please uncomment all the commented lines in the docker-compose file.
After saving this file, `cd` to the folder that contains this file and run the following command to start Appsmith:

View File

@ -234,7 +234,7 @@ storageClass:
autoupdate:
## @param autoupdate.enabled - Enable config autoupdate
##
enabled: true
enabled: false
## @param autoupdate.scheduler - Schedule cron job to check & update Helm image
##
scheduler: "0 * * * *"