I run docker command to mount my project with comm...
# docker
n
I run docker command to mount my project with command : Podman run -v /Users/nghiamac/Development/dashboard_project:/project meltano/meltano init /project then it returned error as below. Could anyone help me ?
Copy code
Creating system database...Need help fixing this problem? Visit <http://melta.no/> for troubleshooting steps, or to
join our friendly Slack community.

Failed to initialize database: (sqlite3.OperationalError) disk I/O error
[SQL: PRAGMA journal_mode=WAL]
(Background on this error at: <https://sqlalche.me/e/20/e3q8>)
I must to use Podman to replace docker desktop
v
disk space? Could you share your docker command (ie podman command) you're using that returns this
e
The equivalent docker command does work for me:
Copy code
$ docker run -v $PWD:/project meltano/meltano init /project
Unable to find image 'meltano/meltano:latest' locally
latest: Pulling from meltano/meltano
92c3b3500be6: Already exists 
89790d4ca55c: Already exists 
04acf592cf1a: Pull complete 
c21204f5797c: Pull complete 
e7931e9ddd39: Pull complete 
4f4fb700ef54: Pull complete 
add0e2b94f25: Pull complete 
d5133a26a013: Pull complete 
Digest: sha256:f34aa630d58d5c658d97ee9c316dfa43fa1df15e1fc086496e08c8b3158f7b67
Status: Downloaded newer image for meltano/meltano:latest
Creating .meltano folder
created .meltano in /project/.meltano
Creating project files...
   |-- meltano.yml
   |-- README.md
   |-- requirements.txt
   |-- output/.gitignore
   |-- .gitignore
   |-- extract/.gitkeep
   |-- load/.gitkeep
   |-- transform/.gitkeep
   |-- analyze/.gitkeep
   |-- notebook/.gitkeep
   |-- orchestrate/.gitkeep
Creating system database...  Done!



                          ████   █████
                         ░░███  ░░███
 █████████████    ██████  ░███  ███████    ██████   ████████    ██████
░░███░░███░░███  ███░░███ ░███ ░░░███░    ░░░░░███ ░░███░░███  ███░░███
 ░███ ░███ ░███ ░███████  ░███   ░███      ███████  ░███ ░███ ░███ ░███
 ░███ ░███ ░███ ░███░░░   ░███   ░███ ███ ███░░███  ░███ ░███ ░███ ░███
 █████░███ █████░░██████  █████  ░░█████ ░░████████ ████ █████░░██████
░░░░░ ░░░ ░░░░░  ░░░░░░  ░░░░░    ░░░░░   ░░░░░░░░ ░░░░ ░░░░░  ░░░░░░



Your project has been created!

Meltano Environments initialized with dev, staging, and prod.
To learn more about Environments visit: <https://docs.meltano.com/concepts/environments>

Next steps:
  Visit <https://docs.meltano.com/getting-started/part1> to learn where to go from here
So maybe there's something off with your host FS (at the mounted point) or the container FS that podman creates.
... and just installed Podman and tried
podman run -v $PWD:/project meltano/meltano init /project
and it also worked
Is
/Users/nghiamac/Development/dashboard_project
readonly, or maybe you had previously started a Meltano project in it?
n
1. Podman pull meltano/meltano 2) Podman run meltano/meltano init my-dashboard-project 3) Podman run -v /Users/nghiamac/Development/dashboard_project:/project meltano/meltano init /project ==> returned error as above @visch
v
We're going to need more info as we can't replicate this on our end. Smells like a disk space issue or something OS related
1
n
issue is resolved, thanks @visch
v
@Nghia Nguyen Truong Tri can you please share what it was for others?