mirror of
https://github.com/Haxxnet/Compose-Examples
synced 2024-11-24 12:31:13 +00:00
ef0861d0e3
add notes
18 lines
563 B
Markdown
18 lines
563 B
Markdown
# References
|
|
|
|
- https://github.com/plausible/analytics
|
|
|
|
# Notes
|
|
|
|
You have to place two clickhouse configuration files at the corresponding Docker bind volume mounts before starting the stack:
|
|
|
|
````
|
|
wget https://raw.githubusercontent.com/plausible/hosting/master/clickhouse/clickhouse-config.xml
|
|
wget https://raw.githubusercontent.com/plausible/hosting/master/clickhouse/clickhouse-user-config.xml
|
|
|
|
mv clickhouse-config.xml /mnt/docker-volumes/plausible/clickhouse/.
|
|
mv clickhouse-user-config.xml /mnt/docker-volumes/plausible/clickhouse/.
|
|
|
|
docker compose up
|
|
````
|