Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
OSUG
JMMC
jmmc-jmdcui-docker
Commits
d550eaa7
Commit
d550eaa7
authored
Jul 31, 2020
by
Guillaume Mella
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add sql password and use 5433 instead of 5432 default port for devs using docker
parent
98f3b756
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
2 deletions
+4
-2
docker-compose.yml
docker-compose.yml
+1
-1
jmdc-postgres/Dockerfile
jmdc-postgres/Dockerfile
+1
-0
jmdc-ui/development-compose.ini
jmdc-ui/development-compose.ini
+2
-1
No files found.
docker-compose.yml
View file @
d550eaa7
...
...
@@ -26,7 +26,7 @@ services:
context
:
jmdc-postgres
image
:
jmdc-postgres:${IMAGE_TAG}
ports
:
-
"
543
2
:5432"
-
"
543
3
:5432"
volumes
:
# /var/lib/postgresql/${PG_VERSION}/ simplified because PG_VERSION is not defined at this stage
-
jmdc-postgres-data:/var/lib/postgresql/data/jmdc_pgdata/
...
...
jmdc-postgres/Dockerfile
View file @
d550eaa7
...
...
@@ -4,6 +4,7 @@ FROM postgres:11
ENV
POSTGRES_USER jmdc
ENV
POSTGRES_DB jmdc
ENV
POSTGRES_PASSWORD jmdc
ENV
PGDATA /var/lib/postgresql/data/jmdc_pgdata
...
...
jmdc-ui/development-compose.ini
View file @
d550eaa7
...
...
@@ -14,7 +14,7 @@ pyramid.debug_routematch = false
pyramid.default_locale_name
=
en
pyramid.includes
=
pyramid_debugtoolbar
sqlalchemy.url
=
postgresql://jmdc@db:543
2
/jmdc
sqlalchemy.url
=
postgresql://jmdc
:jmdc
@db:543
3
/jmdc
retry.attempts
=
3
...
...
@@ -28,6 +28,7 @@ data_ingest.async = True
# secret for the session manager
session.secret
=
uwlv4WMLuHdneZDzeUK6rmznMugQNgrW4AmyaXr5ctsVmmo0fEJGuxsPjEvV66dk
#jinja2.newline_sequence = "\r\n"
[pshell]
setup
=
jmdc_app.pshell.setup
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment