Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ There are a substantial number of configuration options available. The `docker-
We only publish tagged versions to Docker Hub (we don't publish a 'latest' tag). To upgrade to a new version of LabKey Community edition, you have two options:
1. Edit the `docker-compose.yml` file and update the `image` version to the LabKey version you wish to use.
2. Launch a new version from the command line by setting `COMPOSE_IMAGE`.
`COMPOSE_IMAGE="labkeyteamcity/labkey-community:26.3.0" docker compose up community --detach`
`COMPOSE_IMAGE="labkeyteamcity/labkey-community:26.7.0" docker compose up community --detach`

### PostgreSQL version

Expand Down Expand Up @@ -90,4 +90,4 @@ docker compose exec pg-community pg_dumpall -U postgres > dump.sql
PG_VERSION=17 docker compose down
docker compose up -d pg-community # Postgres 18, fresh data dir
cat dump.sql | docker compose exec -T pg-community psql -U postgres
```
```
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

services:
community:
image: ${COMPOSE_IMAGE:-labkeyteamcity/labkey-community:26.3.0}
image: ${COMPOSE_IMAGE:-labkeyteamcity/labkey-community:26.7.0}
platform: linux/amd64
container_name: labkey-community
depends_on:
Expand Down