Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
funkwhale
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
wxcafé
funkwhale
Commits
20d8daa1
Verified
Commit
20d8daa1
authored
7 years ago
by
Eliot Berriot
Browse files
Options
Downloads
Patches
Plain Diff
More generic entrypoint to work with non-compose setups
parent
b7d35c6a
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
api/compose/django/entrypoint.sh
+9
-6
9 additions, 6 deletions
api/compose/django/entrypoint.sh
with
9 additions
and
6 deletions
api/compose/django/entrypoint.sh
+
9
−
6
View file @
20d8daa1
...
...
@@ -4,16 +4,19 @@ set -e
# Since docker-compose relies heavily on environment variables itself for configuration, we'd have to define multiple
# environment variables just to support cookiecutter out of the box. That makes no sense, so this little entrypoint
# does all this for us.
export
CACHE_URL
=
redis://redis:6379/0
export
CACHE_URL
=
${
CACHE_URL
:
=
"
redis://redis:6379/0
"
}
# the official postgres image uses 'postgres' as default user if not set explictly.
if
[
-z
"
$POSTGRES_ENV_POSTGRES_USER
"
]
;
then
if
[
-z
"
$DATABASE_URL
"
]
;
then
# the official postgres image uses 'postgres' as default user if not set explictly.
if
[
-z
"
$POSTGRES_ENV_POSTGRES_USER
"
]
;
then
export
POSTGRES_ENV_POSTGRES_USER
=
postgres
fi
export
DATABASE_URL
=
postgres://
$POSTGRES_ENV_POSTGRES_USER
:
$POSTGRES_ENV_POSTGRES_PASSWORD
@postgres:5432/
$POSTGRES_ENV_POSTGRES_USER
fi
export
DATABASE_URL
=
postgres://
$POSTGRES_ENV_POSTGRES_USER
:
$POSTGRES_ENV_POSTGRES_PASSWORD
@postgres:5432/
$POSTGRES_ENV_POSTGRES_USER
export
CELERY_BROKER_URL
=
$CACHE_URL
if
[
-z
"
$CELERY_BROKER_URL
"
]
;
then
export
CELERY_BROKER_URL
=
$CACHE_URL
fi
# we copy the frontend files, if any so we can serve them from the outside
if
[
-d
"frontend"
]
;
then
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment