Add DNS servers to backend container to resolve external API calls
All checks were successful
Build and Push Docker Images / docker (push) Successful in 49s

Fixes ENOTFOUND api.wren.co error by adding Google DNS servers (8.8.8.8, 8.8.4.4)
to the backend container configuration.
This commit is contained in:
Matt 2025-10-31 12:41:07 +01:00
parent 0192c9b3e5
commit 9fcc458760

View File

@ -38,6 +38,9 @@ services:
- WREN_API_TOKEN=${WREN_API_TOKEN} - WREN_API_TOKEN=${WREN_API_TOKEN}
- WREN_DRY_RUN=${WREN_DRY_RUN:-false} - WREN_DRY_RUN=${WREN_DRY_RUN:-false}
- DATABASE_PATH=/app/data/orders.db - DATABASE_PATH=/app/data/orders.db
dns:
- 8.8.8.8
- 8.8.4.4
networks: networks:
- puffin-network - puffin-network
restart: unless-stopped restart: unless-stopped