Skip to content

Commit 7f9ba31

Browse files
committed
Fix for regression #1036
I guess the CMD style in the Dockerfile got reverted
1 parent 0fb1cd3 commit 7f9ba31

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

Dockerfile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,4 +64,6 @@ WORKDIR /app
6464
ENV HOME=/tmp
6565

6666
#USER nobody
67-
CMD ["trunk-recorder", "--config=/app/config.json"]
67+
# We need to use this style of CMD or else it will leak zombie processes with Unit Script
68+
# See #539
69+
CMD trunk-recorder --config=/app/config.json

0 commit comments

Comments
 (0)