We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents f1314bb + c2e6921 commit a0927a0Copy full SHA for a0927a0
Dockerfile
@@ -8,5 +8,4 @@ COPY Gemfile .
8
COPY Gemfile.lock .
9
10
RUN echo -n "bundle version: " && bundle --version
11
-RUN chmod u+s /bin/chown
12
RUN bundle install
docker-compose.yml
@@ -1,9 +1,8 @@
1
services:
2
jekyll:
3
- user: "${UID}:${GID}"
4
build: .
5
- command: sh -c "chown $UID / && bundle exec jekyll serve --incremental --host=0.0.0.0 "
+ command: "bundle exec jekyll serve --incremental --host=0.0.0.0"
6
ports:
7
- - '4000:4000'
+ - "4000:4000"
volumes:
- .:/srv/jekyll
0 commit comments