Skip to content

Commit 22bc934

Browse files
committed
chore: update example docker-compose
1 parent e1beb6e commit 22bc934

File tree

1 file changed

+10
-4
lines changed

1 file changed

+10
-4
lines changed

packages/documentation/docs/user-guide/installation/installing-sofie-server-core.md

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,10 @@ services:
7575
spreadsheet-gateway:
7676
image: superflytv/sofie-spreadsheet-gateway:latest
7777
restart: always
78-
command: yarn start -host core -port 3000 -id spreadsheetGateway0
78+
environment:
79+
DEVICE_ID: spreadsheetGateway0
80+
CORE_HOST: core
81+
CORE_PORT: '3000'
7982
networks:
8083
- sofie
8184
depends_on:
@@ -86,10 +89,13 @@ services:
8689
image: sofietv/tv-automation-mos-gateway:release51
8790
restart: always
8891
ports:
89-
- "10540:10540" # MOS Lower port
90-
- "10541:10541" # MOS Upper port
92+
- '10540:10540' # MOS Lower port
93+
- '10541:10541' # MOS Upper port
9194
# - "10542:10542" # MOS query port - not used
92-
command: yarn start -host core -port 3000 -id mosGateway0
95+
environment:
96+
DEVICE_ID: mosGateway0
97+
CORE_HOST: core
98+
CORE_PORT: '3000'
9399
networks:
94100
- sofie
95101
depends_on:

0 commit comments

Comments
 (0)