Skip to content

Commit 9f46a72

Browse files
committed
Update PostgreSQL to version 18
1 parent 4fb858f commit 9f46a72

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

.devcontainer/compose.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ services:
2626
restart: unless-stopped
2727

2828
postgres:
29-
image: postgres:17
29+
image: postgres:18
3030
restart: unless-stopped
3131
networks:
3232
- default

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
runs-on: ubuntu-latest
99
services:
1010
db:
11-
image: postgres:17
11+
image: postgres:18
1212
env:
1313
POSTGRES_PASSWORD: postgres
1414
ports:

docs/LOCAL_SETUP.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,19 +22,19 @@ sudo apt-get update
2222
sudo apt-get -y install git ca-certificates curl libpq-dev libicu-dev
2323
```
2424

25-
### Install PostgreSQL 17:
25+
### Install PostgreSQL 18:
2626

2727
**macOS:**
2828
```shell
29-
brew install postgresql@17
30-
brew services start postgresql@17
29+
brew install postgresql@18
30+
brew services start postgresql@18
3131
```
3232

3333
**Linux:**
3434
```shell
3535
curl https://www.postgresql.org/media/keys/ACCC4CF8.asc | gpg --dearmor | sudo tee /etc/apt/trusted.gpg.d/apt.postgresql.org.gpg >/dev/null
3636
echo "deb [arch=$(dpkg --print-architecture)] http://apt.postgresql.org/pub/repos/apt $(lsb_release -cs)-pgdg main" | sudo tee /etc/apt/sources.list.d/pgdg.list
37-
sudo apt-get update && sudo apt-get -y install postgresql-17 postgresql-client-17
37+
sudo apt-get update && sudo apt-get -y install postgresql-18 postgresql-client-18
3838
sudo -u postgres createuser $(whoami) -ed
3939
```
4040

provision/provision.vagrant.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ cd /home/vagrant/codeocean
44

55
######## VERSION INFORMATION ########
66

7-
postgres_version=17
7+
postgres_version=18
88
node_version=lts/jod
99
ruby_version=$(cat .ruby-version)
1010

0 commit comments

Comments
 (0)