File tree Expand file tree Collapse file tree 11 files changed +28
-14
lines changed
documentation/docs/user-guide/installation Expand file tree Collapse file tree 11 files changed +28
-14
lines changed Original file line number Diff line number Diff line change @@ -62,4 +62,4 @@ COPY meteor/docker-entrypoint.sh /opt
6262WORKDIR /opt/core/
6363RUN chown -R 1000:1000 /opt/core
6464USER 1000
65- CMD ["/opt/docker-entrypoint.sh" ]
65+ ENTRYPOINT ["/opt/docker-entrypoint.sh" ]
Original file line number Diff line number Diff line change @@ -8,4 +8,4 @@ COPY meteor/docker-entrypoint.sh /opt
88WORKDIR /opt/core
99RUN chown -R 1000:1000 /opt/core
1010USER 1000
11- CMD ["/opt/docker-entrypoint.sh"]
11+ ENTRYPOINT ["/opt/docker-entrypoint.sh"]
Original file line number Diff line number Diff line change 1+ compressionLevel : mixed
2+
3+ enableGlobalCache : false
4+
15nodeLinker : node-modules
Original file line number Diff line number Diff 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 :
Original file line number Diff line number Diff line change @@ -31,4 +31,4 @@ COPY --from=0 /opt/corelib /opt/corelib
3131WORKDIR /opt/live-status-gateway
3232RUN chown -R 1000:1000 /opt/live-status-gateway
3333USER 1000
34- CMD ["node" , "dist/index.js" ]
34+ ENTRYPOINT ["node" , "dist/index.js" ]
Original file line number Diff line number Diff line change @@ -13,4 +13,4 @@ COPY corelib /opt/corelib
1313WORKDIR /opt/live-status-gateway
1414RUN chown -R 1000:1000 /opt/live-status-gateway
1515USER 1000
16- CMD ["node", "dist/index.js"]
16+ ENTRYPOINT ["node", "dist/index.js"]
Original file line number Diff line number Diff line change @@ -9,7 +9,6 @@ RUN corepack enable
99RUN yarn install --immutable
1010RUN yarn run pinst --disable
1111RUN yarn lerna run --scope \*\* /mos-gateway --include-dependencies --stream build
12- RUN yarn plugin import workspace-tools
1312RUN yarn workspaces focus mos-gateway --production # purge dev-dependencies
1413
1514# DEPLOY IMAGE
@@ -25,4 +24,4 @@ COPY --from=0 /opt/shared-lib /opt/shared-lib
2524WORKDIR /opt/mos-gateway
2625RUN chown -R 1000:1000 /opt/mos-gateway
2726USER 1000
28- CMD ["node" , "dist/index.js" ]
27+ ENTRYPOINT ["node" , "dist/index.js" ]
Original file line number Diff line number Diff line change @@ -10,4 +10,4 @@ COPY shared-lib /opt/shared-lib
1010WORKDIR /opt/mos-gateway
1111RUN chown -R 1000:1000 /opt/mos-gateway
1212USER 1000
13- CMD ["node", "dist/index.js"]
13+ ENTRYPOINT ["node", "dist/index.js"]
Original file line number Diff line number Diff line change @@ -9,7 +9,6 @@ RUN corepack enable
99RUN yarn install --immutable
1010RUN yarn run pinst --disable
1111RUN yarn lerna run --scope \*\* /playout-gateway --include-dependencies --stream build
12- RUN yarn plugin import workspace-tools
1312RUN yarn workspaces focus playout-gateway --production # purge dev-dependencies
1413
1514# DEPLOY IMAGE
@@ -25,4 +24,4 @@ COPY --from=0 /opt/shared-lib /opt/shared-lib
2524WORKDIR /opt/playout-gateway
2625RUN chown -R 1000:1000 /opt/playout-gateway
2726USER 1000
28- CMD ["node" , "dist/index.js" ]
27+ ENTRYPOINT ["node" , "dist/index.js" ]
Original file line number Diff line number Diff line change @@ -10,4 +10,4 @@ COPY shared-lib /opt/shared-lib
1010WORKDIR /opt/playout-gateway
1111RUN chown -R 1000:1000 /opt/playout-gateway
1212USER 1000
13- CMD ["node", "dist/index.js"]
13+ ENTRYPOINT ["node", "dist/index.js"]
You can’t perform that action at this time.
0 commit comments