Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR upgrade postgres to version 13. A change in docker-compose is required to start the pg container since password needs to be provided.
The following migration workflow has been tested on new ci:
sudo docker exec -t PG_CONTAINER_ID pg_dumpall -c -U postgres > /tmp/dump_`date +%d-%m-%Y"_"%H_%M_%S`.sql
pgdata
directorydocker-compose -f docker-compose up
Postgres:13
container is up by runningdocker ps
Postgres:13
container i.e.docker cp dump_12-01-2023_11_47_22.sql PG_13_CONTAINER_ID:/tmp
docker exec -it PG_13_CONTAINER_ID bash
psql -U postgres -d postgres < /tmp/dump_xxx.sql
OMERO-server
andOMERO-test-integration
have been createdpsql -U postgres -l