File tree Expand file tree Collapse file tree 10 files changed +22
-14
lines changed
documentation/docs/user-guide/installation Expand file tree Collapse file tree 10 files changed +22
-14
lines changed Original file line number Diff line number Diff line change @@ -62,4 +62,4 @@ COPY meteor/docker-entrypoint.sh /opt
62
62
WORKDIR /opt/core/
63
63
RUN chown -R 1000:1000 /opt/core
64
64
USER 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
8
8
WORKDIR /opt/core
9
9
RUN chown -R 1000:1000 /opt/core
10
10
USER 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
+
1
5
nodeLinker : node-modules
Original file line number Diff line number Diff line change @@ -75,7 +75,10 @@ services:
75
75
spreadsheet-gateway :
76
76
image : superflytv/sofie-spreadsheet-gateway:latest
77
77
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'
79
82
networks :
80
83
- sofie
81
84
depends_on :
@@ -86,10 +89,13 @@ services:
86
89
image : sofietv/tv-automation-mos-gateway:release51
87
90
restart : always
88
91
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
91
94
# - "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'
93
99
networks :
94
100
- sofie
95
101
depends_on :
Original file line number Diff line number Diff line change @@ -31,4 +31,4 @@ COPY --from=0 /opt/corelib /opt/corelib
31
31
WORKDIR /opt/live-status-gateway
32
32
RUN chown -R 1000:1000 /opt/live-status-gateway
33
33
USER 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
13
13
WORKDIR /opt/live-status-gateway
14
14
RUN chown -R 1000:1000 /opt/live-status-gateway
15
15
USER 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
9
9
RUN yarn install --immutable
10
10
RUN yarn run pinst --disable
11
11
RUN yarn lerna run --scope \*\* /mos-gateway --include-dependencies --stream build
12
- RUN yarn plugin import workspace-tools
13
12
RUN yarn workspaces focus mos-gateway --production # purge dev-dependencies
14
13
15
14
# DEPLOY IMAGE
@@ -25,4 +24,4 @@ COPY --from=0 /opt/shared-lib /opt/shared-lib
25
24
WORKDIR /opt/mos-gateway
26
25
RUN chown -R 1000:1000 /opt/mos-gateway
27
26
USER 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
10
10
WORKDIR /opt/mos-gateway
11
11
RUN chown -R 1000:1000 /opt/mos-gateway
12
12
USER 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
9
9
RUN yarn install --immutable
10
10
RUN yarn run pinst --disable
11
11
RUN yarn lerna run --scope \*\* /playout-gateway --include-dependencies --stream build
12
- RUN yarn plugin import workspace-tools
13
12
RUN yarn workspaces focus playout-gateway --production # purge dev-dependencies
14
13
15
14
# DEPLOY IMAGE
@@ -25,4 +24,4 @@ COPY --from=0 /opt/shared-lib /opt/shared-lib
25
24
WORKDIR /opt/playout-gateway
26
25
RUN chown -R 1000:1000 /opt/playout-gateway
27
26
USER 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
10
10
WORKDIR /opt/playout-gateway
11
11
RUN chown -R 1000:1000 /opt/playout-gateway
12
12
USER 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