Skip to main content
14
results
Andrew Fletcher
The error you're encountering indicates an issue with the ffi gem during the CocoaPods update. The error message suggests trying to run the gem pristine command to fix it. Using terminal - run the following command: gem pristine ffi --version 1.16.3This command will attempt to restore the ffi gem to its pristine state, resolving any issues with its extensions. After running this command, try running pod update again pod updateIf you encounter any permission issues, you might need to use...
Andrew Fletcher
Docker containers list To view a list of Docker containers that are currently...
Andrew Fletcher
Working in an AWS ec2 environment, my goal is to access the server via...
Andrew Fletcher
Build the PHP base image with apache-buster using the Dockerfile.base Since JN...
Andrew Fletcher
As a web developer, you will most likely need to run local copies of a bunch of...
Andrew Fletcher
Getting Started with Cocoapods Installation Built with Ruby, Cocopods is installable with the default Ruby available on macOS.  Using the default Ruby install will require you to use sudo when installing gems. sudo gem install cocoapodsHowever, if you attempt to install or update Cocopods without Sudo you will hit a permission issue. gem install cocoapods Fetching cocoapods-1.11.2.gem Fetching cocoapods-core-1.11.2.gem Fetching rexml-3.2.5.gem Fetching xcodeproj-1.21.0.gem Fetching...
Andrew Fletcher
Running Docker Dangerous word... I'm assuming that Docker is installed....
Andrew Fletcher
Running Docker and attempting to install a web proxy environment where I'm...
Andrew Fletcher
xdebug - failed to solve with frontend dockerfile.v0: failed to create LLB...
Andrew Fletcher
Create and push to Docker Hub Creating your own custom image... you need to have...
Andrew Fletcher
Resetting Docker is basically following the start parameters.  All containers removed - No containers running Try running a container: Copy and paste this command into your terminal docker run -d -p 80:80 docker/getting-started Unable to find image 'docker/getting-started:latest' locally latest: Pulling from docker/getting-started  Error in set up docker: Error response from daemon: Ports are not available: listen tcp 0.0.0.0:80: bind: address already in use.     Port...
Andrew Fletcher
Setting up a new project in Docker and VS Code. Using Terminal, go to your...
Andrew Fletcher
Running Docker in a new process and creating a container.   Go to the...
Andrew Fletcher
Today while in Terminal, I ran a regular script pod update.  However, this...