Skip to content

Commit 673bcbe

Browse files
committed
Fix #7 - refresh Docker containers to use Kurento 6.15.0
1 parent bee98b0 commit 673bcbe

9 files changed

Lines changed: 17 additions & 23 deletions

File tree

.env

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1-
TUTORIAL_NAME=hello-world
1+
TUTORIAL_NAME=hello-world
2+
KURENTO_VERSION=6.15

docker-compose/Dockerfile

Lines changed: 6 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,13 @@
1-
FROM fiware/stream-oriented-kurento:6.8.0
1+
FROM kurento/kurento-media-server:6.15.0
22

3-
4-
5-
RUN echo "deb http://ubuntu.kurento.org/ trusty kms6" | tee /etc/apt/sources.list.d/kurento.list \
6-
&& wget -O - http://ubuntu.kurento.org/kurento.gpg.key | apt-key add - \
3+
RUN echo "deb http://ubuntu.openvidu.io/6.15.0 xenial kms6" | tee /etc/apt/sources.list.d/kurento.list \
74
&& apt-get update \
8-
&& apt-get -y install kms-pointerdetector-6.0 \
9-
&& apt-get -y install kms-crowddetector-6.0 \
10-
&& apt-get -y install kms-platedetector-6.0 \
11-
&& apt-get -y install kms-chroma-6.0 \
5+
&& apt-get -y install kms-pointerdetector \
6+
&& apt-get -y install kms-crowddetector \
7+
&& apt-get -y install kms-platedetector \
8+
&& apt-get -y install kms-chroma \
129
&& apt-get clean \
1310
&& rm -rf /var/lib/apt/lists/*
1411

1512

16-
1713
ENTRYPOINT ["/entrypoint.sh"]

docker-compose/kurento-with-filters.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ services:
2121
- "TUTORIAL_NAME=${TUTORIAL_NAME}"
2222

2323
kurento:
24-
image: fiware/stream-oriented-kurento-plus-filters
24+
image: kurento/kurento-media-server-plus-filters
2525
hostname: kurento
2626
container_name: fiware-kurento
2727
build:

docker-compose/kurento.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ services:
2121
- "TUTORIAL_NAME=${TUTORIAL_NAME}"
2222

2323
kurento:
24-
image: fiware/stream-oriented-kurento:6.8.0
24+
image: kurento/kurento-media-server:${KURENTO_VERSION}
2525
hostname: kurento
2626
container_name: fiware-kurento
2727
expose:

kurento-examples/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM node:carbon
1+
FROM node:14
22

33
ENV MEDIA_SERVER_HOST=kurento
44
ENV MEDIA_SERVER_PORT=8888

services

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -87,11 +87,8 @@ case "${command}" in
8787
stoppingContainers
8888
;;
8989
"create")
90-
echo "Obtaining Latest Kurento Image"
91-
docker pull fiware/stream-oriented-kurento
92-
echo "Recreate Kurento with Filters"
93-
docker build -t fiware/stream-oriented-kurento-plus-filters ./docker-compose
94-
echo "Recreate Kurento examples"
95-
docker build -t fiware/kurento-examples ./kurento-examples
90+
echo "Pulling Docker images"
91+
docker-compose --log-level ERROR -f docker-compose/kurento.yml -p fiware pull
92+
docker-compose --log-level ERROR -f docker-compose/kurento-with-filters.yml -p fiware pull
9693
;;
9794
esac

0 commit comments

Comments
 (0)