[bitnami/clickhouse] Fix the issue 26500 (#26505)

Fix the issue id 26500 of bitnami/containers

Fixed the documentation of bitnami/clickhouse according to issue https://github.com/bitnami/containers/issues/26500
The customization configuration path should be `/bitnami/clickhouse/etc`, not `/bitnami/clickhouse/conf`.

Signed-off-by: clamcy <44613348+clamcy@users.noreply.github.com>
This commit is contained in:
clamcy 2023-03-09 17:03:05 +08:00 committed by GitHub
parent 361eecf901
commit bb862e24b2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -167,11 +167,11 @@ ClickHouse can be configured via environment variables or using a configuration
### Configuration overrides
The configuration can easily be setup by mounting your own configuration overrides on the directory `/bitnami/clickhouse/conf/conf.d` or `/bitnami/clickhouse/conf/users.d`:
The configuration can easily be setup by mounting your own configuration overrides on the directory `/bitnami/clickhouse/etc/conf.d` or `/bitnami/clickhouse/etc/users.d`:
```console
docker run --name clickhouse \
--volume /path/to/override.xml:/bitnami/clickhouse/conf/conf.d/override.xml:ro \
--volume /path/to/override.xml:/bitnami/clickhouse/etc/conf.d/override.xml:ro \
bitnami/clickhouse:latest
```