mirror of
https://github.com/linuxserver/docker-nextcloud.git
synced 2026-02-19 23:03:50 +08:00
10 lines
238 B
Plaintext
10 lines
238 B
Plaintext
#!/usr/bin/with-contenv bash
|
||
|
||
# copy config
|
||
[[ ! -f /config/www/nextcloud/config/config.php ]] && \
|
||
cp /defaults/config.php /config/www/nextcloud/config/config.php
|
||
|
||
# permissions
|
||
chown abc:abc \
|
||
/config/www/nextcloud/config/config.php
|