Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build-and-publish-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
workflow_dispatch:

env:
BASE_TAG: 2026.07
BASE_TAG: sha256:7b927cacf635dede11390524f4849450661f927636c15eae08979da9be551d89
IMAGE_NAME: ghcr.io/ecotrust/wcoa

jobs:
Expand Down
4 changes: 2 additions & 2 deletions docker/compose.prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@ services:
environment:
- DB_INIT=${DB_INIT:-0}
- MP_PROJECT_CONFIG=/usr/local/apps/madrona-portal/apps/wcoa/docker/config.wcoa.docker.ini
- SECRET_KEY=${SECRET_KEY}
- SECRET_KEY=${SECRET_KEY:?SECRET_KEY must be set}
- ALLOWED_HOSTS=${ALLOWED_HOSTS:-localhost,127.0.0.1,::1}
- DEBUG=${DEBUG:-False}
- DB_ENGINE=${DB_ENGINE:-django.contrib.gis.db.backends.postgis}
- DB_NAME=${DB_NAME:-wcoa_docker_db}
- DB_USER=${DB_USER:-postgres}
- DB_PASSWORD=${DB_PASSWORD}
- DB_PASSWORD=${DB_PASSWORD:?DB_PASSWORD must be set}
- DB_HOST=db
- DB_PORT=5432
- REDIS_URL=redis://${REDIS_PASSWORD:+:${REDIS_PASSWORD}@}tasks:6379/1
Expand Down