The address img.flawlessfiles.com
failed to be resolved by any DNS providers. This could be due to expired domain.
Update the hosts in your PC to forcefully resolve the following domain:
img.flawlessfiles.com
1.) Set target directory
export LARAVEL_APP=laravel
The value of
LARAVEL_APP
will be the name of the directory where the laravel app will be created relative to your current working directory in git bash.
2.) Install Laravel via Docker
docker run --rm \
--pull=always \
Open the cloudflared-web
WebUI and back-up the token by copying it and pasting it temporarily somewhere.
Get cloudflared-web
container id:
sudo docker ps
cloudflared-web
container:sudo docker stop
app id
of the target CasaOS app you wanted to back-up the docker-compose.yaml
:You can do this by opening the app settings of the target app, and at the top of the settings window, it should show the app's id:
In the sample screenshot above, the app id of the app I want to backup is linuxserver-plex
.
const components_req = require.context('./components', true, /^(.*\.(vue))[^.]*$/im); | |
const components = components_req.keys().reduce(function(acc, key){ | |
const name = key.replace(/^.*\/([^\.]+)\.vue/,'$1'); | |
if (name !== 'App') { | |
let comp = components_req(key); | |
acc[name] = comp.default && comp.__esModule ? comp.default : comp; | |
} | |
return acc; | |
}, {}); |