We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 11e98ce commit 598a990Copy full SHA for 598a990
1 file changed
docker-compose.yml
@@ -3,15 +3,15 @@ version: "3.8"
3
services:
4
# PostgreSQL Database
5
postgres:
6
- image: postgres:16-alpine
+ image: postgres:17-alpine
7
container_name: hushnet-postgres
8
restart: unless-stopped
9
environment:
10
POSTGRES_USER: ${POSTGRES_USER:-postgres}
11
POSTGRES_PASSWORD: ${POSTGRES_PASSWORD:-dev}
12
POSTGRES_DB: ${POSTGRES_DB:-e2ee}
13
- ports:
14
- - "${POSTGRES_PORT:-5432}:5432"
+ expose:
+ - "5432"
15
volumes:
16
- postgres_data:/var/lib/postgresql/data
17
- ./sql_models/seed.sql:/docker-entrypoint-initdb.d/seed.sql
0 commit comments