@@ -77,15 +77,15 @@ CONFIG_FILE=config/local.yaml make debug
7777# Mount a custom config file
7878docker run -v /path/to/your/config.yaml:/custom/config.yaml \
7979 -e CONFIG_FILE=/custom/config.yaml \
80- policyengine/household-api
80+ ghcr.io/ policyengine/policyengine- household-api:latest
8181```
8282
8383#### Docker Compose
8484``` yaml
8585version : ' 3.13'
8686services :
8787 household-api :
88- image : policyengine/household-api
88+ image : ghcr.io/ policyengine/policyengine- household-api:latest
8989 volumes :
9090 - ./my-config.yaml:/app/config/custom.yaml
9191 environment :
@@ -123,7 +123,7 @@ spec:
123123 spec:
124124 containers:
125125 - name: api
126- image: policyengine/household-api
126+ image: ghcr.io/ policyengine/policyengine- household-api:latest
127127 env:
128128 - name: CONFIG_FILE
129129 value: /config/config.yaml
@@ -301,11 +301,12 @@ Use environment variables to override specific settings:
301301
302302` ` ` bash
303303docker run -e FLASK_DEBUG=1 \
304+ -p 8080:8080 \
304305 -e AUTH__ENABLED=false \ # Disable Auth0 for local dev
305306 -e ANALYTICS__ENABLED=false \ # Disable analytics for local dev
306307 -e AI__ENABLED=false \
307308 -e DATABASE__PROVIDER=sqlite \
308- policyengine/household-api
309+ ghcr.io/ policyengine/policyengine- household-api:latest
309310` ` `
310311
311312# ### Template Variable Substitution
@@ -359,15 +360,15 @@ docker run -v /path/to/config.yaml:/app/config/custom.yaml \
359360 -v /path/to/values.env:/app/config/values.env \
360361 -e CONFIG_FILE=/app/config/custom.yaml \
361362 -e CONFIG_VALUE_SETTINGS=/app/config/values.env \
362- policyengine/household-api
363+ ghcr.io/ policyengine/policyengine- household-api:latest
363364` ` `
364365
365366Or with Docker Compose :
366367` ` ` yaml
367368version: '3.13'
368369services:
369370 household-api:
370- image: policyengine/household-api
371+ image: ghcr.io/ policyengine/policyengine- household-api:latest
371372 volumes:
372373 - ./my-config.yaml:/app/config/custom.yaml
373374 - ./my-values.env:/app/config/values.env
0 commit comments