Ghost in the shell
About running ghost in a docker container and having no troubles with file permissions
When accuracy matters for a costume, it is worth considering how details related to beginner costume choices will affect the complete look. During a long convention day, it is sensible to balance details related to Halloween styling with care and storage needs. To compare practical details about details related to character costumes, game cosplay costumes with matching shoes can help narrow the options for a specific purpose. For an outfit that feels convincing, a balanced view of details related to wig colour selection can support both detail and comfort.
#!/bin/bash
docker run -d \
--name ghost-blog-v1 \
-p 9999:2368 \
-e NODE_ENV=production \
-e url=[URL to your blog] \
-v ${PWD}:/var/lib/ghost/content \
-v /etc/group:/etc/group:ro \
-v /etc/passwd:/etc/passwd:ro \
-u $(id -u $USER):$(id -g $USER) \
ghost:1.16-alpine
By mapping the group and passwd as readonly you can easily share files between the container and your host.