Open your terminal.
In the root directory run the command:
sudo nano /etc/bluetooth/main.conf
Install package via composer
composer require illuminate/database| name: Update blog posts | |
| on: | |
| push: | |
| workflow_dispatch: | |
| schedule: | |
| - cron: '0 0 * * *' | |
| jobs: | |
| build: |
| FROM php:7.4-fpm-alpine | |
| WORKDIR /var/www/html | |
| # Setup GD extension | |
| RUN apk add --no-cache \ | |
| freetype \ | |
| libjpeg-turbo \ | |
| libpng \ | |
| freetype-dev \ |
| FROM php:7.4-fpm | |
| # Copy composer.lock and composer.json | |
| COPY ../composer.lock composer.json /var/www/ | |
| # Set working directory | |
| WORKDIR /var/www | |
| # Install dependencies | |
| RUN apt-get update && apt-get install -y \ |
| #!/bin/bash | |
| SRC_DIR="/var/www/html" | |
| BACKUP_DIR="/mnt/backups" | |
| PROJECT_NAME="project" | |
| BACKUP_RETENTION_DAILY=6 | |
| BACKUP_RETENTION_WEEKLY=3 | |
| BACKUP_RETENTION_MONTHLY=3 | |
| BACKUP_RETENTION_YEARLY=0 |
| #!/usr/bin/env bash | |
| #This script backups selected databases in local MySQL server | |
| #REQUIREMENTS | |
| ##mysqldump gzip | |
| ##mysql database has no root password. This script uses 'root' MySQL user without password as no 'root' password is set. | |
| ##This is not good practice. User with more restrictive permission should be used. | |
| #set database user |
| FROM nginx:alpine | |
| # stock verison from php:alpine image | |
| # ensure www-data user exists | |
| RUN set -x \ | |
| && addgroup -g 82 -S www-data \ | |
| && adduser -u 82 -D -S -G www-data www-data | |
| # 82 is the standard uid/gid for "www-data" in Alpine | |
| # http://git.alpinelinux.org/cgit/aports/tree/main/apache2/apache2.pre-install?h=v3.3.2 |