mirror of
https://github.com/jc21/nginx-proxy-manager.git
synced 2024-08-30 18:22:48 +00:00
8 lines
159 B
Bash
Executable File
8 lines
159 B
Bash
Executable File
#!/usr/bin/with-contenv bash
|
|
set -e
|
|
|
|
mkdir -p /data/logs
|
|
echo "Changing ownership of /data/logs to $(id -u):$(id -g)"
|
|
chown -R "$(id -u):$(id -g)" /data/logs
|
|
|