We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6b6cd40 commit 582a28aCopy full SHA for 582a28a
docker-compose.yml
@@ -1,10 +1,11 @@
1
services:
2
postgres:
3
- image: postgres:17
+ image: postgres:${POSTGRES_VERSION:-17}
4
environment:
5
- POSTGRES_USER: postgres
6
- POSTGRES_PASSWORD: postgres
7
- POSTGRES_DB: postgres_doctrine_test
+ POSTGRES_USER: ${POSTGRES_USER:-postgres}
+ POSTGRES_PORT: ${POSTGRES_USER:-5432}
+ POSTGRES_PASSWORD: ${POSTGRES_PASSWORD:-postgres}
8
+ POSTGRES_DB: ${POSTGRES_DB:-postgres_doctrine_test}
9
ports:
10
- "5432:5432"
11
volumes:
0 commit comments