Was trying to explore LibSQL and run some of the commands that were in the docs. Noticed some strange behavior and found some trailing spaces that were causing issues in my shell.
➜ ~ docker run --name some-sqld -p 8080:8080 -ti \
-e SQLD_NODE=primary \
--platform linux/amd64 \
ghcr.io/tursodatabase/libsql-server:latest
docker: invalid reference format.
See 'docker run --help'.
zsh: command not found: -e
By removing the trailing space, the command works properly
Was trying to explore LibSQL and run some of the commands that were in the docs. Noticed some strange behavior and found some trailing spaces that were causing issues in my shell.
By removing the trailing space, the command works properly