Run capture in docker? #1392
-
Hey there, is there already a way to run caputre dockerized on a remote host with a pre-built image or is there just the way by installing/running it with go? Thank you! |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
Hello @HomerSimpson3k We are working on providing remote images for Capture. However capture has a Dockerfile in the repo, that means you can build and run it on your own device. Local Docker Buildgit clone [email protected]:bluewave-labs/capture.git cd capture docker buildx build -f Dockerfile -t capture . docker run -v /etc/os-release:/etc/os-release:ro \
-p 59232:59232 \
-e API_SECRET=REPLACE_WITH_YOUR_SECRET \
-d \
capture:latest These steps should work for you. If you encounter a problem, you can create an issue in the capture repo. Work in progressIf you have any suggestion please let us know. # We are working on this, the url is invalid
docker pull ghcr.io/bluewave-labs/capture/capture docker run -v /etc/os-release:/etc/os-release:ro \
-p 59232:59232 \
-e API_SECRET=REPLACE_WITH_YOUR_SECRET \
-d \
ghcr.io/bluewave-labs/capture/capture:latest Issues and PRs related to this topic |
Beta Was this translation helpful? Give feedback.
-
Hey @mertssmnoglu , thanks for the quick and detailed response. I will give this a try later today. Thanks a lot! Much appreciated! |
Beta Was this translation helpful? Give feedback.
Hello @HomerSimpson3k
We are working on providing remote images for Capture. However capture has a Dockerfile in the repo, that means you can build and run it on your own device.
Local Docker Build
cd capture
docker buildx build -f Dockerfile -t capture .
These steps should work for you. If you encounter a problem, you can create an issue in the capture repo.
Work in progress
If you have any suggestion please let us know.
# We are working on this, the url is invalid docker pull ghcr.io/bluewave-l…