Skip to content

Commit ef94ba7

Browse files
committed
update change
1 parent 172ef38 commit ef94ba7

File tree

3 files changed

+6
-14
lines changed

3 files changed

+6
-14
lines changed

samples/hasura/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ docker compose -f ./compose.yaml -f ./compose.dev.yaml up --build
2323
```
2424
This will start the Postgres container (from `compose.dev.yaml`) and the Hasura container (from `compose.yaml` with some overrides). The Hasura console will be available at `http://localhost:8080` with the password `password`.
2525

26-
> Note: If you want to make changes to your database, permissions, etc. see [Editing Hasura Settings](#editing-hasura-settings) for more information.
26+
> Note: If you want to make changes to your database, permissions, etc. see [Editing Hasura Settings](#editing-hasura-settings).
2727
2828
### Editing Hasura Settings
2929

samples/hasura/compose.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ services:
1919
- HASURA_GRAPHQL_DEFAULT_NAMING_CONVENTION=graphql-default
2020
- HASURA_GRAPHQL_MIGRATIONS_DIR=/hasura/migrations
2121
- HASURA_GRAPHQL_METADATA_DIR=/hasura/metadata
22-
#deploy:
23-
# resources:
24-
# reservations:
25-
# memory: 256M
22+
deploy:
23+
resources:
24+
reservations:
25+
memory: 256M

samples/huginn/compose.yaml

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ services:
1010
resources:
1111
reservations:
1212
cpus: '1.0'
13-
memory: '2G'
13+
memory: 1G
1414
healthcheck:
1515
test: ["CMD", "curl", "-f", "http://localhost:3000/"]
1616
interval: 1m30s
@@ -22,11 +22,3 @@ services:
2222
- DATABASE_USERNAME=huginn
2323
- DATABASE_PASSWORD
2424
- DATABASE_HOST=postgres
25-
depends_on:
26-
- postgres
27-
postgres:
28-
image: postgres:16
29-
environment:
30-
- POSTGRES_USER=huginn
31-
- POSTGRES_PASSWORD
32-
- POSTGRES_DB=huginn

0 commit comments

Comments
 (0)