-
Notifications
You must be signed in to change notification settings - Fork 0
/
entrypoint.sh
executable file
·47 lines (38 loc) · 1.32 KB
/
entrypoint.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
#!/bin/bash
set -e
echo "Running entrypoint script..."
# Check if environment variable indicates Rails web container
if [[ ! -z "${RAILS_WEB_CONTAINER}" ]]; then
echo "Running entrypoint script for Rails web container..."
else
echo "Skipping database migrations for non-Rails web container."
# Execute the container's main process (what's set as CMD in the Dockerfile).
exec "$@"
fi
# Remove a potentially pre-existing server.pid for Rails.
rm -f /app/tmp/pids/server.pid
echo "Removed existing server.pid file"
# Function to check and migrate the database
migrate_database() {
local env=$1
echo "Migrating database for $env environment..."
# Check if the database exists
if ! RAILS_ENV=$env rails db:version > /dev/null 2>&1; then
echo "$env database does not exist. Creating and migrating..."
RAILS_ENV=$env rails db:create db:migrate
else
echo "$env database already exists. Running migrations..."
RAILS_ENV=$env rails db:migrate
fi
# Seed the development database only
if [[ "$env" == "development" ]]; then
echo "Seeding development database..."
RAILS_ENV=$env rails db:seed
fi
}
# Migrate the development database
migrate_database "development"
# Migrate the test database
migrate_database "test"
# Then exec the container's main process (what's set as CMD in the Dockerfile).
exec "$@"