while using docker ```docker run \ --volume $(pw...
# troubleshooting
a
while using docker
Copy code
docker run \
  --volume $(pwd)/output:/project/output \
  meltano-demo-project:dev \
  elt tap-gitlab target-jsonl --job_id=gitlab-to-jsonl
state is not maintained , every run it says no state found ? can anyone help in maintaining state through docker run
p
assuming you are using the local sqlite database for state, you probably also need a volume mount for the
.meltano
directory
a
thanks a lot 🙂👍