I Must Be Missing A Step? #52
Replies: 1 comment
|
HA! No problem! The project is always improving - and that includes the setup instructions! Here's my guess as to whats going on - but you confirm: did you mount your subdirectory of memes (e.g., Here's the relevant snippet from the pro compose file meme_search_pro:
image: ghcr.io/neonwatty/meme_search_pro:latest
container_name: meme_search_pro
environment:
- DATABASE_URL=postgres://postgres:postgres@meme-search-db:5432/meme_search
ports:
- "3000:3000"
depends_on:
meme_search_db:
condition: service_healthy
volumes: # <-- any additional meme directory must be mounted here
- ./meme_search_pro/memes/:/rails/public/memes # <-- example meme directoriesIts that last line under - ./meme_search_pro/memes/:/rails/public/memes # <-- example meme directoriesYou need to add proper mounts to any additional subdirectory you'd like Meme Search to ingest. So - for example - if you have a directory on your machine - /my/directory/of/memes/Test:/rails/public/memes/TestOnce this is done and the app is restarted you should be able to register your memes in the Hope this helps! Let me know otherwise and we'll continue troubleshooting. I'll also update the README with these instructions. (edit: updated) |




HA! No problem! The project is always improving - and that includes the setup instructions!
Here's my guess as to whats going on - but you confirm: did you mount your subdirectory of memes (e.g.,
Test) to your container running Meme Search?Here's the relevant snippet from the pro compose file