This commit is contained in:
Ethan Roseman 2022-11-22 23:18:32 +09:00
parent e2d9f6e682
commit 25f771cdd7
No known key found for this signature in database
GPG Key ID: 27F9FCEB8E4969BD
3 changed files with 7 additions and 14 deletions

View File

@ -1 +0,0 @@
PRODUCTION=NO

View File

@ -1,13 +1,7 @@
#!/usr/bin/env bash
DB_HOST=${DATABASE_HOST:-postgres}
DB_PORT=${DATABASE_PORT:-5432}
BE_HOST=${BACKEND_HOST:-frogress}
BE_PORT=${BACKEND_PORT:-8000}
until nc -z ${DB_HOST} ${DB_PORT} > /dev/null; do
echo "Waiting for database to become available on ${DB_HOST}:${DB_PORT}..."
until nc -z ${DATABASE_HOST} ${DATABASE_PORT} > /dev/null; do
echo "Waiting for database to become available on ${DATABASE_HOST}:${DATABASE_PORT}..."
sleep 1
done

View File

@ -1,12 +1,12 @@
version: '2'
services:
postgres:
image: postgres:13-alpine
image: postgres:15.1-bullseye
environment:
POSTGRES_USER: frogress
POSTGRES_PASSWORD: frogress
POSTGRES_USER: ${POSTGRES_USER}
POSTGRES_PASSWORD: ${POSTGRES_PASSWORD}
ports:
- "5432:5432"
- "${POSTGRES_PORT}:${POSTGRES_PORT}"
volumes:
- ./deployment/postgres/data:/var/lib/postgresql/data
frogress:
@ -14,4 +14,4 @@ services:
context: .
dockerfile: deployment/frogress/Dockerfile
ports:
- "8000:8000"
- "${BACKEND_PORT}:${BACKEND_PORT}"