Skip to content

Commit

Permalink
Merge pull request ClickHouse#71825 from ClickHouse/bake-docker-offic…
Browse files Browse the repository at this point in the history
…ial-library

Address the last point regarding chmod for /etc/clickhouse*
  • Loading branch information
Felixoid authored Nov 12, 2024
2 parents 1ecd190 + e1b6d70 commit 2e3145c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion docker/server/Dockerfile.ubuntu
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,9 @@ RUN clickhouse local -q 'SELECT 1' >/dev/null 2>&1 && exit 0 || : \
/var/lib/apt/lists/* \
/var/cache/debconf \
/tmp/* \
&& apt-get autoremove --purge -yq dirmngr gnupg2
&& apt-get autoremove --purge -yq dirmngr gnupg2 \
&& chmod ugo+Xrw -R /etc/clickhouse-server /etc/clickhouse-client
# The last chmod is here to make the next one is No-op in docker official library Dockerfile

# post install
# we need to allow "others" access to clickhouse folder, because docker container
Expand Down

0 comments on commit 2e3145c

Please sign in to comment.