ptlrs commented on code in PR #122: URL: https://github.com/apache/ozone-site/pull/122#discussion_r1909853134
########## docs/02-quick-start/01-installation/01-docker.md: ########## @@ -2,6 +2,84 @@ sidebar_label: Docker --- +<!-- cspell:words xzf --> + # Try Ozone With Docker -**TODO:** File a subtask under [HDDS-9856](https://issues.apache.org/jira/browse/HDDS-9856) and complete this page or section. +import Tabs from '@theme/Tabs'; +import TabItem from '@theme/TabItem'; + +This guide explains how to run Apache Ozone using Docker Compose, either with locally built sources or pre-built images. + +## Prerequisites + +- [Docker Engine](https://www.docker.com/products/docker-desktop/) 20.10.0 or higher Review Comment: Previously, I had faced the following error: ```bash ozone % docker-compose up failed to read /ozone/hadoop-ozone/dist/target/ozone-2.0.0-SNAPSHOT/compose/ozone/docker-config: line 17: unexpected character "-" in variable name "CORE-SITE.XML_fs.defaultFS=ofs://om" ``` This bug got introduced in https://github.com/docker/compose/issues/12123. The specified docker desktop version number would fetch the fixed or higher version of docker compose. We can remove the version number. Any new release would be sufficient, especially by the time this page is likely to be published. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
