You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Thanks for the pointer. We call out the docker run command in our getting started guide - https://docs.fastenhealth.com/getting-started/ and in our README, but our existing docker-compose file is targeted towards developers.
Fasten Health looks to be an amazing project, I can't wait to check it all out and try to contribute.
Thought a docker compose template might be useful along with the docker run command in the documentation. This is what I used:
services:
fasten-health:
image: ghcr.io/fastenhealth/fasten-onprem:main
container_name: fasten-health
restart: unless-stopped
ports:
- "127.0.0.1:9090:8080"
volumes:
- /opt/fasten/db:/opt/fasten/db
- /opt/fasten/cache:/opt/fasten/cache
(there was another issue but I managed to solve it, it turned out to be something on my end, so I edited it out)
The text was updated successfully, but these errors were encountered: