Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
portal-backend
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
Package Registry
Container Registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
HBP Medical Informatics Platform
portal-backend
Commits
3eab0f7a
Commit
3eab0f7a
authored
8 years ago
by
Mirco Nasuti
Browse files
Options
Downloads
Patches
Plain Diff
bugfix in config + link config into backend container
parent
426f6f24
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
config/application.yml
+3
-5
3 additions, 5 deletions
config/application.yml
docker-compose.yml
+2
-0
2 additions, 0 deletions
docker-compose.yml
src/docker/run/Dockerfile
+2
-0
2 additions, 0 deletions
src/docker/run/Dockerfile
with
7 additions
and
5 deletions
config/application.yml
+
3
−
5
View file @
3eab0f7a
...
...
@@ -9,6 +9,9 @@ spring:
jpa
:
hibernate
:
dialect
:
org.hibernate.dialect.PostgreSQL9Dialect
resources
:
chain
:
enabled
:
true
security
:
enabled
:
false
...
...
@@ -29,11 +32,6 @@ logging:
level
:
org.springframework.security
:
DEBUG
spring
:
resources
:
chain
:
enabled
:
true
server
:
contextPath
:
/services
port
:
8080
...
...
This diff is collapsed.
Click to expand it.
docker-compose.yml
+
2
−
0
View file @
3eab0f7a
...
...
@@ -12,6 +12,8 @@ services:
-
"
8080:8080"
links
:
-
"
db"
volumes
:
-
./config:/config
db
:
container_name
:
db
image
:
postgres:9.5.3
...
...
This diff is collapsed.
Click to expand it.
src/docker/run/Dockerfile
+
2
−
0
View file @
3eab0f7a
FROM
frolvlad/alpine-oraclejdk8:slim
VOLUME
/config
COPY
./target/backend-services-DOCKER_BUILD.jar backend.jar
CMD
["java", "-jar", "backend.jar"]
This diff is collapsed.
Click to expand it.
Preview
0%
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