diff --git a/Dockerfile b/Dockerfile index fcb8b1c62..89d106080 100644 --- a/Dockerfile +++ b/Dockerfile @@ -17,7 +17,6 @@ COPY . . # Initialize and update git submodules RUN git init -RUN git config --global url."https://github.com/".insteadOf git@github.com: RUN git submodule init RUN git submodule update diff --git a/README.md b/README.md index 8577fc223..b8cd888aa 100644 --- a/README.md +++ b/README.md @@ -29,6 +29,15 @@ npm test # Docker +run the prebuilt docker image: + +``` bash +docker run -p 8080:8080 -d ghcr.io/ArduPilot/UAVLogViewer:latest + +``` + +or build the docker file locally: + ``` bash # Build Docker Image @@ -45,4 +54,4 @@ docker logs # Navigate to localhost:8080 in your web browser -``` \ No newline at end of file +```