Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
Demo
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
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
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
ACS
Public
VILLASframework
Demo
Commits
cd0cf76b
Commit
cd0cf76b
authored
5 years ago
by
Steffen Vogel
Browse files
Options
Downloads
Patches
Plain Diff
compose: use fixed image tags
parent
72338f15
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Pipeline
#191797
failed
5 years ago
Stage: deploy
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
Makefile
+4
-0
4 additions, 0 deletions
Makefile
docker-compose.yml
+8
-7
8 additions, 7 deletions
docker-compose.yml
with
12 additions
and
7 deletions
Makefile
0 → 100644
+
4
−
0
View file @
cd0cf76b
images
:
image-broker
image-broker
:
image-%: Dockerfile.%
docker build
-t
registry.git.rwth-aachen.de/acs/public/villas/demo/
$*
-f
$<
This diff is collapsed.
Click to expand it.
docker-compose.yml
+
8
−
7
View file @
cd0cf76b
...
...
@@ -9,14 +9,14 @@ volumes:
services
:
# The VILLASweb frontend
frontend
:
image
:
villas/web-frontend
image
:
villas/web-frontend
:demo-v0.1
build
:
context
:
frontend
restart
:
always
# The VILLASweb backend
backend
:
image
:
villas/web-backend
image
:
villas/web-backend
:demo-v0.1
build
:
context
:
backend
environment
:
...
...
@@ -34,7 +34,7 @@ services:
# A single reverse proxy for all our services
nginx
:
image
:
nginx:
stable
-alpine
image
:
nginx:
1.17.4
-alpine
volumes
:
-
./etc/nginx/villas.conf:/etc/nginx/conf.d/default.conf
ports
:
...
...
@@ -47,14 +47,14 @@ services:
# The MongoDB database for the VILLASweb backend
database
:
image
:
mongo:
latest
image
:
mongo:
3.4.23
volumes
:
-
database:/data/db
restart
:
always
# VILLASnode, the gateway between UDP and WebSocket traffic
node
:
image
:
villas/node:
latest
image
:
villas/node:
demo-v0.1
privileged
:
true
command
:
node /etc/villas/node/demo.conf
volumes
:
...
...
@@ -68,13 +68,13 @@ services:
# A relay for websocket nodes
relay
:
image
:
villas/node
image
:
villas/node
:demo-v0.1
restart
:
always
command
:
relay
# Web Interface for MongoDB
mongo-express
:
image
:
mongo-express
image
:
mongo-express
:0.49.0
environment
:
ME_CONFIG_MONGODB_SERVER
:
database
ME_CONFIG_BASICAUTH_USERNAME
:
admin
...
...
@@ -89,6 +89,7 @@ services:
build
:
context
:
.
dockerfile
:
Dockerfile.broker
image
:
villas/broker:demo-v0.1
environment
:
RABBITMQ_DEFAULT_USER
:
"
villas"
RABBITMQ_DEFAULT_PASS
:
"
s3c0sim4!"
...
...
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