Skip to content

Commit ec736dc

Browse files
rjmunroJulusian
authored andcommitted
docs: Suggested command breaks startup of playout gateway
The error is that the wrong version of Yarn is installed and corepack is not enabled. ``` Presence of the "packageManager" field indicates that the project is meant to be used with Corepack, a tool included by default with all official Node.js distributions starting from 16.9 and 14.19. Corepack must currently be enabled by running corepack enable in your terminal. For more information, check out https://yarnpkg.com/corepack. ``` Instead I leave it set to default and add enviornment variables needed to make it work.
1 parent 8cd9f67 commit ec736dc

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

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

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,10 @@ services:
5959
playout-gateway:
6060
image: sofietv/tv-automation-playout-gateway:release51
6161
restart: always
62-
command: yarn start -host core -port 3000 -id playoutGateway0
62+
environment:
63+
DEVICE_ID: playoutGateway0
64+
CORE_HOST: core
65+
CORE_PORT: '3000'
6366
networks:
6467
- sofie
6568
- lan_access

0 commit comments

Comments
 (0)