I'm having a hard time running a container from the Ghost image in development (after docker pull ghost
).
Using:
docker run --name some-ghost -p 4000:2368 -v /Users/Documents/ghost-blog/content/themes/:/var/lib/ghost/content/themes/ -e NODE_ENV=development ghost
seems to start the container in development but when I navigate to the page in browser I get
localhost didn’t send any data. ERR_EMPTY_RESPONSE
I've tried looking this up but it seems like development was previously the default environment until recently. I'm not really sure where to proceed.