Skip to content

Commit 172ef38

Browse files
committed
huginn update
1 parent 55c1261 commit 172ef38

File tree

2 files changed

+12
-4
lines changed

2 files changed

+12
-4
lines changed

samples/huginn/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Huginn is a system for building agents that perform automated tasks for you onli
1818
To run the application locally, you can use the following command:
1919

2020
```bash
21-
`docker compose -f ./compose.yaml -f ./compose.dev.yaml up
21+
docker compose -f ./compose.yaml -f ./compose.dev.yaml up
2222
```
2323
This will start the Postgres container and the Huginn container. Huginn will be available at `http://localhost:3000` with the username `admin` and password `password`.
2424

samples/huginn/compose.yaml

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,15 @@ services:
1818
retries: 10
1919
environment:
2020
- DATABASE_ADAPTER=postgresql
21-
- DATABASE_NAME
22-
- DATABASE_USERNAME
21+
- DATABASE_NAME=huginn
22+
- DATABASE_USERNAME=huginn
2323
- DATABASE_PASSWORD
24-
- DATABASE_HOST
24+
- 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)