Skip to content
Snippets Groups Projects
Commit cd0cf76b authored by Steffen Vogel's avatar Steffen Vogel :santa_tone2:
Browse files

compose: use fixed image tags

parent 72338f15
No related branches found
No related tags found
No related merge requests found
Pipeline #191797 failed
images: image-broker
image-broker: image-%: Dockerfile.%
docker build -t registry.git.rwth-aachen.de/acs/public/villas/demo/$* -f $<
...@@ -9,14 +9,14 @@ volumes: ...@@ -9,14 +9,14 @@ volumes:
services: services:
# The VILLASweb frontend # The VILLASweb frontend
frontend: frontend:
image: villas/web-frontend image: villas/web-frontend:demo-v0.1
build: build:
context: frontend context: frontend
restart: always restart: always
# The VILLASweb backend # The VILLASweb backend
backend: backend:
image: villas/web-backend image: villas/web-backend:demo-v0.1
build: build:
context: backend context: backend
environment: environment:
...@@ -34,7 +34,7 @@ services: ...@@ -34,7 +34,7 @@ services:
# A single reverse proxy for all our services # A single reverse proxy for all our services
nginx: nginx:
image: nginx:stable-alpine image: nginx:1.17.4-alpine
volumes: volumes:
- ./etc/nginx/villas.conf:/etc/nginx/conf.d/default.conf - ./etc/nginx/villas.conf:/etc/nginx/conf.d/default.conf
ports: ports:
...@@ -47,14 +47,14 @@ services: ...@@ -47,14 +47,14 @@ services:
# The MongoDB database for the VILLASweb backend # The MongoDB database for the VILLASweb backend
database: database:
image: mongo:latest image: mongo:3.4.23
volumes: volumes:
- database:/data/db - database:/data/db
restart: always restart: always
# VILLASnode, the gateway between UDP and WebSocket traffic # VILLASnode, the gateway between UDP and WebSocket traffic
node: node:
image: villas/node:latest image: villas/node:demo-v0.1
privileged: true privileged: true
command: node /etc/villas/node/demo.conf command: node /etc/villas/node/demo.conf
volumes: volumes:
...@@ -68,13 +68,13 @@ services: ...@@ -68,13 +68,13 @@ services:
# A relay for websocket nodes # A relay for websocket nodes
relay: relay:
image: villas/node image: villas/node:demo-v0.1
restart: always restart: always
command: relay command: relay
# Web Interface for MongoDB # Web Interface for MongoDB
mongo-express: mongo-express:
image: mongo-express image: mongo-express:0.49.0
environment: environment:
ME_CONFIG_MONGODB_SERVER: database ME_CONFIG_MONGODB_SERVER: database
ME_CONFIG_BASICAUTH_USERNAME: admin ME_CONFIG_BASICAUTH_USERNAME: admin
...@@ -89,6 +89,7 @@ services: ...@@ -89,6 +89,7 @@ services:
build: build:
context: . context: .
dockerfile: Dockerfile.broker dockerfile: Dockerfile.broker
image: villas/broker:demo-v0.1
environment: environment:
RABBITMQ_DEFAULT_USER: "villas" RABBITMQ_DEFAULT_USER: "villas"
RABBITMQ_DEFAULT_PASS: "s3c0sim4!" RABBITMQ_DEFAULT_PASS: "s3c0sim4!"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment