Changing type of DB_PORT to string

A value for DB_PORT must be a string for the podman-compose to work.
This commit is contained in:
Amanuel Elhanan 2025-11-07 11:26:40 +03:00 committed by GitHub
parent 473081a2ad
commit f770253b89
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -2,7 +2,7 @@ services:
configurator: configurator:
environment: environment:
DB_HOST: db DB_HOST: db
DB_PORT: 3306 DB_PORT: "3306"
depends_on: depends_on:
db: db:
condition: service_healthy condition: service_healthy