Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
D
docker
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Iterations
Merge Requests
0
Merge Requests
0
Requirements
Requirements
List
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Code Review
Insights
Issue
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
mowgli
docker
Commits
e3868ded
Commit
e3868ded
authored
Jun 19, 2018
by
Daniel Seybold
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
added entrypoint to docker ompose
parent
bdc85162
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
31 additions
and
5 deletions
+31
-5
README.md
README.md
+13
-3
docker-compose.yml
docker-compose.yml
+15
-1
env-template
env-template
+3
-1
No files found.
README.md
View file @
e3868ded
...
...
@@ -28,6 +28,10 @@ Installation of Cloudiator using Docker (docker-compose).
mkdir /var/log/application-deployment-library/
```
```
mkdir /var/log/evaluation-orchestrator/
```
*
Required folder for persistent data:
...
...
@@ -36,6 +40,11 @@ Installation of Cloudiator using Docker (docker-compose).
mkdir -p /var/lib/cloudiator/colosseum-store/
```
*
Required folder for evaluation results:
```
mkdir -p /opt/evaluation-results/
```
* install git
...
...
@@ -54,9 +63,10 @@ Installation of Cloudiator using Docker (docker-compose).
## Use
*
Colosseum REST-Server automatically starts on port 9000
*
Application-Deployment-Library start on port 9091
*
PHP-Myadmin is available on port 8080 (currently unprotected)
* Evaluation-Orchestrator REST-API is available on port 8282
* Colosseum REST-API starts on port 9000
* Application-Deployment-Library REST-API is available on port 9091
* PHP-Myadmin is available on port 8080
...
...
docker-compose.yml
View file @
e3868ded
...
...
@@ -82,5 +82,19 @@ services:
# - INFLUXDB_USERNAME=${INFLUXDB_USER}
# - INFLUXDB_PASSWORD=${INFLUXDB_PW}
ports
:
-
8888:8888
-
8888:8888
evaluation-orchestrator
:
depends_on
:
-
"
application-catalogue"
image
:
omi-registry.e-technik.uni-ulm.de/ds/db-evaluator-entrypoint:latest
restart
:
always
environment
:
-
COLOSSEUM_URI=colosseum-service
-
APPLICATION_DEPLOYMENT_LIBRARY_URI=application-catalogue
-
WORKLOAD_API_URI=${WORKLOAD_API_IP}
ports
:
-
8282:8282
volumes
:
-
/var/log/evaluation-orchestrator/:/var/log/evaluation-orchestrator/
-
/opt/evaluation-results/:/opt/evaluation-results/
\ No newline at end of file
env-template
View file @
e3868ded
...
...
@@ -9,4 +9,6 @@ INFLUXDB_PW=criminal
INFLUXDB_ADMIN=influxadmin
INFLUXDB_ADMIN_PW=topsecret
PUBLIC_IP=1.2.3.4
\ No newline at end of file
PUBLIC_IP=1.2.3.4
WORKLOAD_API_IP=1.2.3.4
\ No newline at end of file
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