Fix: set -p for mkdir
This commit is contained in:
parent
4fcbc46175
commit
38078de4b0
|
@ -1,8 +1,8 @@
|
||||||
when:
|
when:
|
||||||
- event: push
|
- event: push
|
||||||
path:
|
path:
|
||||||
- 'nextcloud/**'
|
- 'nextcloud/**'
|
||||||
- '.woodpecker/nextcloud.yaml'
|
- '.woodpecker/nextcloud.yaml'
|
||||||
- event: cron
|
- event: cron
|
||||||
cron: daily
|
cron: daily
|
||||||
|
|
||||||
|
|
|
@ -4,7 +4,7 @@ FROM docker.io/library/nextcloud:${TAG}
|
||||||
RUN apt-get update && apt-get install -y \
|
RUN apt-get update && apt-get install -y \
|
||||||
supervisor \
|
supervisor \
|
||||||
&& rm -rf /var/lib/apt/lists/* \
|
&& rm -rf /var/lib/apt/lists/* \
|
||||||
&& mkdir /var/log/supervisord /var/run/supervisord
|
&& mkdir -p /var/log/supervisord /var/run/supervisord
|
||||||
|
|
||||||
ADD supervisord.conf /supervisord.conf
|
ADD supervisord.conf /supervisord.conf
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue