Hello @sergiy, i am using a docker container for survey solution,
i wanted to do the update, i hence i run
docker-compose down,
update the .yml file and then run
docker-compose up -d
however, my hq appliction still has the same version
23.09.4 (build 35728)
My docker-compose.yml file
GNU nano 5.4 docker-compose.yml
version: ‘3’
services:
hq:
image: ‘surveysolutions/surveysolutions’
ports:
- “9700:80”
depends_on:
- db
environment:
HQ_ConnectionStrings__DefaultConnection: ‘Server=db;Port=;User Id=;Password=;Database=’
HQ_Headquarters__BaseUrl: http://****************
ASPNETCORE_URLS: “http://+:80”
volumes:
- ./AppData:/app/AppData
db:
image: “postgres”
environment:
POSTGRES_PASSWORD: *************
ports:
- “5432”
volumes:
- hq_pg_data:/var/lib/postgresql/data
healthcheck:
test: [“CMD-SHELL”, “pg_isready -U postgres”]
interval: 10s
timeout: 5s
retries: 5
volumes:
hq_pg_data: