Need help with deploying my own app to ZimaOS

Hi everyone, I need some help with deploying my own app to ZimaOS.

I created a simple website that I want to deploy to ZimaOS for our household usage, I containerized the app and can run it with docker compose locally.

However on ZimaOS, trying to run docker compose does not work

sige@ZimaOS:~/own_app/weather ➜ $ sudo docker compose up`
`Password:`
`mkdir /root/.docker: read-only file system

I also tried building the image locally, upload the image to ZimaOS and tried to use the UI to start the app.

However, the UI cannot find the local image, failed to pull.

Would really appreciate your opinion.

Use root, and point Docker’s config to a writable location:

sudo -i
mkdir -p /var/lib/docker/.docker
export DOCKER_CONFIG=/var/lib/docker/.docker
docker compose up -d
1 Like

This works correctly, thanks my friend

Maybe you can share your app Idea for the household - sounds very interesting

Ah, it’s a joint shopping list between me and the wife. I think there’s already a similar app out there but I built it for fun :sweat_smile:

1 Like