feat: implement core platform features including business directory, admin dashboard, authentication, and API infrastructure
Some checks failed
Build and Push App / build (push) Failing after 16m2s
Some checks failed
Build and Push App / build (push) Failing after 16m2s
This commit is contained in:
@@ -3,18 +3,18 @@ version: '3.8'
|
||||
services:
|
||||
db:
|
||||
image: postgres:15
|
||||
container_name: afropreunariat_db
|
||||
container_name: afrohub_db
|
||||
restart: always
|
||||
environment:
|
||||
POSTGRES_USER: admin
|
||||
POSTGRES_PASSWORD: adminpassword
|
||||
POSTGRES_DB: afropreunariat_dev
|
||||
POSTGRES_DB: afrohub_dev
|
||||
ports:
|
||||
- "5432:5432"
|
||||
volumes:
|
||||
- pgdata:/var/lib/postgresql/data
|
||||
healthcheck:
|
||||
test: ["CMD-SHELL", "pg_isready -U admin -d afropreunariat_dev"]
|
||||
test: ["CMD-SHELL", "pg_isready -U admin -d afrohub_dev"]
|
||||
interval: 10s
|
||||
timeout: 5s
|
||||
retries: 5
|
||||
@@ -23,7 +23,7 @@ services:
|
||||
build:
|
||||
context: .
|
||||
dockerfile: Dockerfile
|
||||
container_name: afropreunariat_app
|
||||
container_name: afrohub_app
|
||||
restart: always
|
||||
ports:
|
||||
- "3000:3000"
|
||||
@@ -38,7 +38,7 @@ services:
|
||||
build:
|
||||
context: ./admin
|
||||
dockerfile: Dockerfile
|
||||
container_name: afropreunariat_admin
|
||||
container_name: afrohub_admin
|
||||
restart: always
|
||||
ports:
|
||||
- "3001:3001"
|
||||
|
||||
Reference in New Issue
Block a user