Skip to content

Commit 0f0adc8

Browse files
committed
compose: add image tag to compose files
1 parent 0177765 commit 0f0adc8

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

docker-compose.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ version: '3'
33
services:
44
# Frontend
55
web:
6-
image: jitsi/web
6+
image: jitsi/web:latest
77
restart: ${RESTART_POLICY}
88
ports:
99
- '${HTTP_PORT}:80'
@@ -45,7 +45,7 @@ services:
4545

4646
# XMPP server
4747
prosody:
48-
image: jitsi/prosody
48+
image: jitsi/prosody:latest
4949
restart: ${RESTART_POLICY}
5050
expose:
5151
- '5222'
@@ -110,7 +110,7 @@ services:
110110

111111
# Focus component
112112
jicofo:
113-
image: jitsi/jicofo
113+
image: jitsi/jicofo:latest
114114
restart: ${RESTART_POLICY}
115115
volumes:
116116
- ${CONFIG}/jicofo:/config:Z
@@ -137,7 +137,7 @@ services:
137137

138138
# Video bridge
139139
jvb:
140-
image: jitsi/jvb
140+
image: jitsi/jvb:latest
141141
restart: ${RESTART_POLICY}
142142
ports:
143143
- '${JVB_PORT}:${JVB_PORT}/udp'

etherpad.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ version: '3'
33
services:
44
# Etherpad: real-time collaborative document editing
55
etherpad:
6-
image: jitsi/etherpad
6+
image: jitsi/etherpad:latest
77
restart: ${RESTART_POLICY}
88
networks:
99
meet.jitsi:

jibri.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ version: '3'
22

33
services:
44
jibri:
5-
image: jitsi/jibri
5+
image: jitsi/jibri:latest
66
restart: ${RESTART_POLICY}
77
volumes:
88
- ${CONFIG}/jibri:/config:Z

jigasi.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ version: '3'
33
services:
44
# SIP gateway (audio)
55
jigasi:
6-
image: jitsi/jigasi
6+
image: jitsi/jigasi:latest
77
restart: ${RESTART_POLICY}
88
ports:
99
- '${JIGASI_PORT_MIN}-${JIGASI_PORT_MAX}:${JIGASI_PORT_MIN}-${JIGASI_PORT_MAX}/udp'

0 commit comments

Comments
 (0)