Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
schaertl_andreas
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
Container registry
Model registry
Operate
Environments
Monitor
Incidents
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
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
supervision
schaertl_andreas
Commits
6b4c4fe2
Commit
6b4c4fe2
authored
4 years ago
by
Andreas Schärtl
Browse files
Options
Downloads
Patches
Plain Diff
deployment: make ports configurable
parent
2f72393d
Branches
Branches containing commit
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
README.md
+14
-2
14 additions, 2 deletions
README.md
deployment/.env
+3
-0
3 additions, 0 deletions
deployment/.env
deployment/docker-compose.yml
+8
-8
8 additions, 8 deletions
deployment/docker-compose.yml
with
25 additions
and
10 deletions
README.md
+
14
−
2
View file @
6b4c4fe2
...
...
@@ -18,8 +18,20 @@ Directories
- `/src/ulo-rdf4j`: Script for generating `ULO.java` which contains
constants for use with RDF4J.
Configuration
-------------
Configuration for Docker Compose
--------------------------------
Configuration of the
`/deployment`
Docker Compose setup consists of
three port numbers.
*
`ULOCOMPOSE_DBPORT`
is the port the GraphDB instance listens on.
*
`ULOCOMPOSE_COLLECTPORT`
is the port the collector listens on.
*
`ULOCOMPOSE_APPPORT`
is the port the application listens on.
Configuration for Local Installs
--------------------------------
The
`src/ulo-storage-applications`
web interface listens on
`0.0.0.0:7400`
. If you wish to change this, you can set the
...
...
This diff is collapsed.
Click to expand it.
deployment/.env
0 → 100644
+
3
−
0
View file @
6b4c4fe2
ULOCOMPOSE_DBPORT=7200
ULOCOMPOSE_COLLECTPORT=7300
ULOCOMPOSE_APPPORT=7400
This diff is collapsed.
Click to expand it.
deployment/docker-compose.yml
+
8
−
8
View file @
6b4c4fe2
version
:
'
3'
services
:
ulocollectweb
:
image
:
"
schaertl/ulocollectweb"
ports
:
-
7300:7300
ulographdb
:
# We use an unoffcial image as there is no official
# image for the free version. It is possible to build
...
...
@@ -12,12 +7,17 @@ services:
# prefer this solution as it means no special downloads.
image
:
"
khaller/graphdb-free:1.2.2-graphdb9.1.1"
ports
:
-
7200:7200
-
${ULOCOMPOSE_DBPORT}:7200
ulocollectweb
:
image
:
"
schaertl/ulocollectweb"
ports
:
-
${ULOCOMPOSE_COLLECTPORT}:7300
uloapps
:
image
:
"
schaertl/uloapps:latest"
environment
:
-
ULOAPPS_REMOTE_SERVER=http://ulographdb:
7200
-
ULOAPPS_REMOTE_SERVER=http://ulographdb:
${ULOCOMPOSE_DBPORT}
-
ULOAPPS_REMOTE_REPOSITORY=compose
ports
:
-
7400
:7400
-
${ULOCOMPOSE_APPPORT}
:7400
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