Closed christopherdeutsch closed 2 months ago
Hi! I think one of the examples can be simplified.
The current command in the example for clickhouse-backup is
command: - bash - -xc - "/bin/clickhouse-backup server"
And the Dockerfile ends with:
ENTRYPOINT ["/entrypoint.sh"] CMD [ "/bin/clickhouse-backup", "--help" ]
This PR will update the docs to just pass server to the entrypoint script, since bash is unnecessary. The -xc flags could be useful for debugging, but I propose that using the args to specify server makes the example more clear.
server
bash
-xc
thanks for contribution
Hi! I think one of the examples can be simplified.
The current command in the example for clickhouse-backup is
And the Dockerfile ends with:
This PR will update the docs to just pass
server
to the entrypoint script, sincebash
is unnecessary. The-xc
flags could be useful for debugging, but I propose that using the args to specifyserver
makes the example more clear.