coolify icon indicating copy to clipboard operation
coolify copied to clipboard

[Bug]: "Pull Latest Image and Restart" isn't pulling the latest image

Open taowang1993 opened this issue 1 year ago • 0 comments

Description

I am trying to update Moodle from 4.2 to 4.3.

I tried clicking on the "Pull Latest Image and Restart", but when I opened Moodle, the version was still 4.2.

I tried changing the Docker Compose file from 4.2 to 4.3. But still, actual version did not change.


Btw, when I was installing Moodle for the first time, I changed the default version from 4.3 to 4.2 for testing purposes. I am not sure if this is causing coolify unable to update Moodle to 4.3 somehow.

services: mariadb: image: 'mariadb:11.3' environment: - ALLOW_EMPTY_PASSWORD=no - MYSQL_ROOT_PASSWORD=$SERVICE_PASSWORD_ROOT - MYSQL_DATABASE=bitnami_moodle - MYSQL_USER=$SERVICE_USER_MARIADB - MYSQL_PASSWORD=$SERVICE_PASSWORD_MARIADB - MARIADB_CHARACTER_SET=utf8mb4 - MARIADB_COLLATE=utf8mb4_unicode_ci volumes: - 'mariadb-data:/var/lib/mysql' moodle: image: 'docker.io/bitnami/moodle:4.3' environment: - SERVICE_FQDN_MOODLE_8080 - MOODLE_DATABASE_HOST=mariadb - MOODLE_DATABASE_PORT_NUMBER=3306 - MOODLE_DATABASE_USER=$SERVICE_USER_MARIADB - MOODLE_DATABASE_NAME=bitnami_moodle - MOODLE_DATABASE_PASSWORD=$SERVICE_PASSWORD_MARIADB - ALLOW_EMPTY_PASSWORD=no - 'MOODLE_USERNAME=${MOODLE_USERNAME:-user}' - MOODLE_PASSWORD=$SERVICE_PASSWORD_MOODLE - [email protected] - 'MOODLE_SITE_NAME=${MOODLE_SITE_NAME:-New Site}' volumes: - 'moodle-data:/bitnami/moodle' - 'moodledata-data:/bitnami/moodledata' depends_on: - mariadb

Minimal Reproduction (if possible, example repository)

  1. install Moodle with one-click
  2. click "pull latest image and restart"
  3. change docker compose

Exception or Error

No response

Version

v4.0.0-beta.265

taowang1993 avatar Apr 21 '24 06:04 taowang1993