Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
O
osmaxx
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
ifs
geometalab
osmaxx
Merge requests
!132
Feature/configure application for production
#6
Code
Review changes
Check out branch
Download
Patches
Plain diff
Expand sidebar
Merged
Feature/configure application for production
#6
feature/configure-application-for-production-#6
into
develop
Overview
1
Commits
19
Pipelines
0
Changes
19
Merged
Nicola Jordan
requested to merge
feature/configure-application-for-production-#6
into
develop
10 years ago
Overview
1
Commits
19
Pipelines
0
Changes
19
Created by: ghost
better splitting of docker-compose files
using dockerhub for base images
Security Settings for production
Security Settings with evironment variables
basic settings for docker-compose
env-settings-file for running django locally (without docker)
Closes
#6 (closed)
,
#121 (closed)
.
0
0
Merge request reports
Compare
develop
develop (base)
and
latest version
latest version
ffc1af71
19 commits,
2 years ago
19 files
+
219
−
168
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
19
docker/postgis/Dockerfile deleted
100755 → 0
+
0
−
13
View file @ 8b844351
FROM
postgres:9.4
RUN
localedef
-i
en_US
-c
-f
UTF-8
-A
/usr/share/locale/locale.alias en_US.UTF-8
ENV
LANG en_US.utf8
ENV
POSTGIS_MAJOR 2.1
ENV
POSTGIS_VERSION 2.1.7+dfsg-0~exp1.pgdg70+1
# postgis is not there per default
RUN
[
"echo"
,
"deb http://http.debian.net/debian wheezy-backports main"
,
">>"
,
"/etc/apt/sources.list"
]
RUN
[
"apt-get"
,
"update"
]
RUN
[
"apt-get"
,
"-y"
,
"install"
,
"postgis"
]
RUN
mkdir
-p
/docker-entrypoint-initdb.d
COPY
./initdb-postgis.sh /docker-entrypoint-initdb.d/postgis.sh
Loading