-
Notifications
You must be signed in to change notification settings - Fork 1.1k
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
langgraph up
doesn't find Docker on mac
#1319
Comments
I'm also using zsh, so it's similar to Similar to langchain-ai/langgraph-studio#37 , but in my case I already did everything that was suggested in that issue and it didn't help |
@n-sviridenko is docker running on your machine? could you perhaps paste output of |
It’s running. I’m from my mobile
…On Tue, 13 Aug 2024 at 15:13 Vadym Barda ***@***.***> wrote:
@n-sviridenko <https://github.com/n-sviridenko> is docker running on your
machine? could you perhaps paste output of docker info command?
—
Reply to this email directly, view it on GitHub
<#1319 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/ACHHE7XHDX3H3H7V755OVC3ZRIA6BAVCNFSM6AAAAABMMTTCLGVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZDEOBWGIZDEMRUGA>
.
You are receiving this because you were mentioned.Message ID:
***@***.***>
|
any chance you're using podman? |
Not really - just the regular Docker desktop for mac. |
can you paste the output of |
Closing due to inactivity |
> langgraph up
Starting LangGraph API server...
For local dev, requires env var LANGSMITH_API_KEY with access to LangGraph Cloud closed beta.
For production use, requires a license key in env var LANGGRAPH_CLOUD_LICENSE_KEY.
Usage: langgraph up [OPTIONS]
Try 'langgraph up --help' for help.
Error: Docker not installed or not running > docker info
Client:
Context: default
Debug Mode: false
Plugins:
app: Docker App (Docker Inc., v0.9.1-beta3)
buildx: Build with BuildKit (Docker Inc., v0.5.1-docker)
scan: Docker Scan (Docker Inc., v0.6.0)
Server:
Containers: 14
Running: 14
Paused: 0
Stopped: 0
Images: 67
Server Version: 20.10.5
Storage Driver: overlay2
Backing Filesystem: extfs
Supports d_type: true
Native Overlay Diff: true
Logging Driver: json-file
Cgroup Driver: cgroupfs
Cgroup Version: 1
Plugins:
Volume: local
Network: bridge host ipvlan macvlan null overlay
Log: awslogs fluentd gcplogs gelf journald json-file local logentries splunk syslog
Swarm: inactive
Runtimes: io.containerd.runc.v2 io.containerd.runtime.v1.linux runc
Default Runtime: runc
Init Binary: docker-init
containerd version: 05f951a3781f4f2c1911b05e61c160e9c30eaa8e
runc version: 12644e614e25b05da6fd08a38ffa0cfe1903fdec
init version: de40ad0
Security Options:
seccomp
Profile: default
Kernel Version: 5.10.25-linuxkit
Operating System: Docker Desktop
OSType: linux
Architecture: x86_64
CPUs: 6
Total Memory: 1.941GiB
Name: docker-desktop
ID: TTHX:VUA5:ENOI:XRZ4:OCGS:FYCB:6S63:7RKQ:IXKL:WE6N:YLSB:7X7D
Docker Root Dir: /var/lib/docker
Debug Mode: true
File Descriptors: 154
Goroutines: 133
System Time: 2024-10-26T13:42:25.088685898Z
EventsListeners: 4
HTTP Proxy: http.docker.internal:3128
HTTPS Proxy: http.docker.internal:3128
Registry: https://index.docker.io/v1/
Labels:
Experimental: false
Insecure Registries:
127.0.0.0/8
Live Restore Enabled: false
|
@vbarda posted above, we can re-open it |
Having the same issue.
|
According to the official Docker documentation at https://docs.docker.com/reference/cli/docker/system/info/#format , the correct usage of the
however, it appears that it's being used incorrectly here: https://github.com/langchain-ai/langgraph/blob/main/libs/cli/langgraph_cli/docker.py#L80 |
@gedion Hello, would it be possible to share your contents of |
Yes it does and I have learned it appears to be a docker version issue. $ docker --version
Docker version 20.10.22, build 3a2c30b
$ docker info - json
json
$ docker info -f '{{ json . }}'
//redacted
{
"ID": "213f120b-e127-4cc2-86f7-3499237c5311",
"Containers": 2,
"ContainersRunning": 2,
"ContainersPaused": 0,
"ContainersStopped": 0,
"Images": 4,
"Driver": "overlay2",
"Plugins": {
"Volume": ["local"],
"Network": ["bridge", "host", "overlay"],
"Log": ["json-file"]
},
"MemoryLimit": true,
"SwapLimit": true,
"CpuCfsPeriod": true,
"CpuCfsQuota": true,
"PidsLimit": true,
"IPv4Forwarding": true,
"BridgeNfIptables": true,
"BridgeNfIp6tables": true,
"SystemTime": "2024-11-01T07:32:25.551791675Z",
"LoggingDriver": "json-file",
"CgroupDriver": "cgroupfs",
"CgroupVersion": "2",
"KernelVersion": "6.6.12-linuxkit",
"OperatingSystem": "Docker Desktop",
"OSType": "linux",
"Architecture": "aarch64",
"NCPU": 8,
"MemTotal": 8222334976,
"DockerRootDir": "/var/lib/docker",
"Name": "docker-desktop",
"ServerVersion": "25.0.3",
"DefaultRuntime": "runc",
"SecurityOptions": ["name=seccomp,profile=unconfined"],
"ClientInfo": {
"Version": "25.0.3",
"Os": "darwin",
"Arch": "arm64",
"Plugins": [
{
"Name": "buildx",
"Version": "v0.12.1-desktop.4"
},
{
"Name": "compose",
"Version": "v2.24.5-desktop.1"
},
{
"Name": "sbom",
"Version": "0.6.0"
}
]
}
} I just learned that a previous version of ( |
+1 here. Tried with both Podman Desktop and Rancher Desktop. |
Checked other resources
Example Code
Error Message and Stack Trace (if applicable)
No response
Description
System Info
mac
python 3.12
The text was updated successfully, but these errors were encountered: