Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Postgres fixes #17

Open
wants to merge 2 commits into
base: develop
Choose a base branch
from

Commits on May 30, 2024

  1. Create postgres database with the same name as the main user

    postgres tries to connect to a database with the user's name by default when none is specified in the psql command
    
    The main Moodle database is created using a psql command with no database specified in the moodle-plugin-ci tool, this was not working becuase of the lack of a jenkins database
    NeillM committed May 30, 2024
    Configuration menu
    Copy the full SHA
    9617d2e View commit details
    Browse the repository at this point in the history
  2. Add the php-pgsql package

    The image is missing the postgres package required for Moodle to use the postgres database.
    
    We also need to ensure that apt is updated on this layer, just incase the previous layers are contain cached out of date package information
    NeillM committed May 30, 2024
    Configuration menu
    Copy the full SHA
    397e3bb View commit details
    Browse the repository at this point in the history