szabgab / meet-os.rs

The Meet operating system, a platform to organize events
https://meet-os.com/
5 stars 2 forks source link

Setup.sh: docker run issues on Pop!_OS jammy 22.04 x86_64 (Ubuntu 22.04) #73

Open EzekTec-Inc opened 1 day ago

EzekTec-Inc commented 1 day ago

When I run "./tools/setup.sh", the system throws an error about docker as below;

docker: invalid reference format. See 'docker run --help'.

I can confirm that my docker installation on Pop!_OS jammy 22.04 x86_64 is stable, functional and able to create, load and delete containers, including surrealdb using my terminal (bash).

This is error is not allowing me proceed to the next step on standing up the application.

szabgab commented 1 day ago

Please provide the output of docker -v and also that of rustc -vV

EzekTec-Inc commented 1 day ago

Docker Docker version 27.3.1, build ce12230

Rustc rustc 1.82.0 (f6e511eec 2024-10-15) binary: rustc commit-hash: f6e511eec7342f59a25f7c0534f1dbea00d01b14 commit-date: 2024-10-15 host: x86_64-unknown-linux-gnu release: 1.82.0 LLVM version: 19.1.1

EzekTec-Inc commented 1 day ago

I've taken some closer look at the shell script and modified it to ensure it's runnable and populating the right information in my linux distro. I can now get the application to run in my linux distro with the following response on succesful run;

meet-os-local-ns meet-os-local-db my-surreal-db 3d1b3f362ae75e22284f3a4a8163964db05064809fd43f06ad546bf9912e672d

My steps in getting it to run on my machine;

  1. #!/bin/bash <-- added this to the top of the shell script file (./tools/setup.sh)
  2. ${pwd} --> "$(pwd)"

I can now run the application on my machine.

szabgab commented 21 hours ago

Thanks. Please check the updated version.