Skip to content

Commit

Permalink
chore: proper way to run the program
Browse files Browse the repository at this point in the history
  • Loading branch information
aldy505 committed May 29, 2024
1 parent 356882e commit c7f1c0e
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,18 @@ feeds:
Then run the Docker container.
```sh
docker run -v ./config.yml:/config.yml ghcr.io/teknologi-umum/brassite:edge -config-path /config.yml
docker run -v ./config.yml:/config.yml ghcr.io/teknologi-umum/brassite:edge /usr/local/bin/brassite --config=/config.yml
```

Or if you prefer Docker Compose:
```yaml
services:
brassite:
image: ghcr.io/teknologi-umum/brassite:edge
command: "/usr/local/bin/brassite --config=/config.yml"
volumes:
- ./config.yml:/config.yml
restart: on-failure:10
```
## License
Expand Down

0 comments on commit c7f1c0e

Please sign in to comment.