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 5c5420a commit 15605beCopy full SHA for 15605be
samples/hasura/compose.dev.yaml
@@ -1,6 +1,6 @@
1
services:
2
postgres:
3
- image: postgres:16
+ image: postgres:14
4
environment:
5
- POSTGRES_USER=postgres
6
- POSTGRES_PASSWORD=postgres
samples/huginn/compose.yaml
@@ -20,11 +20,17 @@ services:
20
- DATABASE_ADAPTER=postgresql
21
- DATABASE_NAME=huginn
22
- DATABASE_USERNAME=huginn
23
- - DATABASE_PASSWORD
24
- - DATABASE_HOST=postgres
25
- postgres:
26
+ - DATABASE_PASSWORD=${POSTGRES_PASSWORD}
+ - DATABASE_HOST=postgresx
+ postgresx:
27
28
- POSTGRES_USER=huginn
29
- POSTGRES_PASSWORD
30
- POSTGRES_DB=huginn
31
+ ports:
32
+ - mode: host
33
+ target: 5432
34
+ published: 5432
35
+ networks:
36
+ - public
0 commit comments