chore: add update tag stage
Build & Push Docker Image (Backend) / build (push) Failing after 1m47s

This commit is contained in:
Flook
2026-04-26 20:07:49 +07:00
parent f7c48ea30f
commit 42fc750405
3 changed files with 19 additions and 4 deletions
+3 -3
View File
@@ -92,11 +92,11 @@ WSGI_APPLICATION = 'core.wsgi.application'
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.postgresql', # เปลี่ยนจาก django_cockroachdb
'NAME': os.environ.get('DB_NAME', 'my_db'),
'NAME': os.environ.get('DB_NAME', 'lms'),
'HOST': os.environ.get('DB_HOST', 'localhost'),
'PORT': os.environ.get('DB_PORT', '5432'), # พอร์ตมาตรฐาน PostgreSQL
'USER': os.environ.get('DB_USER', 'user'),
'PASSWORD': os.environ.get('DB_PASSWORD', 'password'),
'USER': os.environ.get('DB_USER', 'lms'),
'PASSWORD': os.environ.get('DB_PASSWORD', 'lms123'),
'OPTIONS': {
'connect_timeout': 5,
},