Commit 0c866840 authored by Dom Sekotill's avatar Dom Sekotill
Browse files

Add instructions to make /bin/entrypoint executable

parent c6ba2d5a
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -22,6 +22,7 @@ To use [`docker-entrypoint.sh`][2], `docker-init.sh` must go in `/lib/`:
```
ADD https://code.kodo.org.uk/kodo.org.uk/docker-init/raw/master/docker-init.sh /lib/docker-init.sh
ADD https://code.kodo.org.uk/kodo.org.uk/docker-init/raw/master/docker-entrypoint.sh /bin/entrypoint
RUN chmod +x /bin/entrypoint
ENTRYPOINT ["/bin/entrypoint"]
```

+1 −0
Original line number Diff line number Diff line
@@ -13,6 +13,7 @@ added to a Dockerfile:
```
ADD https://code.kodo.org.uk/kodo.org.uk/docker-init/raw/master/docker-init.sh /lib/docker-init.sh
ADD https://code.kodo.org.uk/kodo.org.uk/docker-init/raw/master/docker-entrypoint.sh /bin/entrypoint
RUN chmod +x /bin/entrypoint
ENTRYPOINT ["/bin/entrypoint"]
```