tursodatabase / libsql

libSQL is a fork of SQLite that is both Open Source, and Open Contributions.
https://turso.tech/libsql
MIT License
11.25k stars 286 forks source link

Remove Trailing Spaces from Docker Docs #1578

Closed caleb-mabry closed 4 months ago

caleb-mabry commented 4 months ago

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

athoscouto commented 4 months ago

Thanks for the contribution!