-
Notifications
You must be signed in to change notification settings - Fork 1.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Tutorial on https://vector.dev/docs/setup/installation/platforms/docker/ failed #5410
Comments
The problem here is that the docker run
-v ~/vector.toml:/etc/vector/vector.toml:ro \
-v /run/containerd/containerd.sock:/run/containerd/containerd.sock \
-e DOCKER_HOST="unix:///run/containerd/containerd.sock" \
-p 8383:8383 \
timberio/vector:0.11.X-alpine |
This works for my (ubuntu vm): docker run -d \
-v ~/vector.toml:/etc/vector/vector.toml:ro \
-v /var/run/docker.sock:/var/run/docker.sock \
-e DOCKER_HOST="unix:///var/run/docker.sock" \
-p 8383:8383 timberio/vector:0.13.X-debian Try |
Thanks JoseIbanez. Your snippet works for me. Ubuntu 20.04. |
Closing since the socket needs to be mounted, as noted above, for the |
so, vector does not support containerd.sock? if runtime is containerd not docker |
The tutorial on:
https://vector.dev/docs/setup/installation/platforms/docker/
Here's what went wrong:
The text was updated successfully, but these errors were encountered: