Created
October 25, 2021 07:11
-
-
Save Slach/492010e427cdd05c9c89a2f5e9cd0d42 to your computer and use it in GitHub Desktop.
ClickHouse Schema Migration control
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<yandex> | |
<default><access_management>1</access_management></default> | |
</yandex> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: "3.8" | |
services: | |
clickhouse: | |
image: yandex/clickhouse-server:${CLICKHOUSE_VERSION:-latest} | |
volumes: | |
- ./access_management.xml:/etc/clickhouse-server/config.d/access_management.xml | |
ports: | |
- "8123:8123" | |
bytebase: | |
image: bytebase/bytebase:${BYTEBASE_VERSION:-0.7.2} | |
ports: | |
- "8008:8008" | |
volumes: | |
- ~/.bytebase/data:/var/opt/bytebase | |
command: | | |
--data /var/opt/bytebase --host http://localhost --port 8008 | |
links: | |
- clickhouse | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment