This guide explains how to launch and manage your Poshmark Assistant using Docker directly.
To launch the application in the background:
docker-compose up -d --builddocker-compose downdocker logs -f poshmark-assistantdocker-compose restart poshmark-assistantIf you've made code changes and need to rebuild:
docker-compose up -d --buildOnce started, the app is available at: Address: http://127.0.0.1:3000
- Database: Your inventory and settings are stored in
prisma/dev.db. This file is mapped to the container to ensure data persists even if the container is deleted. - Environment: Ensure your
.envfile contains yourGOOGLE_GENAI_API_KEY.