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