Raspberry Pi Zero W

Raspbian Stretch Lite – Setup (Raspberry Pi Zero W)

Stretch Lite image Download Link: https://www.raspberrypi.org/downloads/raspbian/ Choose Raspbian Stretch Lite Download ZIP. Make unzip this downloaded zip file. The easiesst way to Flash to your SD Card is Etcher. Download and install this Software. After Openning, Select .iso file, and your SD Card and click Flash. How to set up WiFi Create a file in Boot directory called wpa_supplicant.conf ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=netdev network={ ssid=”YOUR-NETWORK-NAME” psk=”PASSWORD” key_mgmt=WPA-PSK } How to enable SSH Create a file in Boot directory empty file called ssh. For example i have on my computer Git Bash Terminal, with this Terminal type only this command:   touch ssh or second […]

Docker

Docker for Local WordPress Development

Create a file  called docker-compose.yml with the following code in your project directory and then enter ‘docker-compose up’ at the command line. version: “2” services: my-wpdb: image: mariadb ports: – “8081:3306” environment: MYSQL_ROOT_PASSWORD: verysecret mywp: image: wordpress volumes: – ./:/var/www/html ports: – “8080:80” links: – my-wpdb:mysql environment: WORDPRESS_DB_PASSWORD: verysecret   Views: 36