Menu Close

devstate.de

A Dreams Engine Blog. This Blog may not make any sense to you. This is a collection of internal snippets that we collect with our experiences, but we hope some of our post will help you in some way.

Author / DevTeam

Configura tu Mac

##HOMEBREW Primero que nada recomendamos leer mas de : Homebrew Puedes instalar tu software de la manera tradicional o ser ninja: Por medio de tu terminal ejecutamos los siguiente comandos Posiblemente el Apple’s Command Line Tools se instale automático pero hagamos esto por si las dudas, Instala Homebrew en tu Mac: Si Brew se instala […]

Continue Reading

Hombrew OSX

Before Everything: brew update brew upgrade Fix Permissions sudo chown -R $(whoami):admin /usr/local Install Vim 8 brew install vim –override-system-vim Install PHP7.1 (20.03.17) brew tap homebrew/dupes brew tap homebrew/versions brew tap homebrew/homebrew-php brew install php71 Install Latest Rsync brew tap homebrew/dupes brew install rsync brew link rsync Install Latest Tmux brew install tmux  

Continue Reading

Fixing Ubuntu Random Issues

Fixing NO_PUBKEY: W: GPG error: http://ppa.launchpad.net precise Release: The following signatures couldn’t be verified because the public key is not available: NO_PUBKEY 2EA8F35793D8809A apt-key adv –keyserver keyserver.ubuntu.com –recv-keys 4F4EA0AAE5267A6C or for EasyEngine: apt-key adv –keyserver keyserver.ubuntu.com –recv 3050AC3CD2AE6F03     Fixing PIP / Letsencrypt Error: OSError: Command /root/.local/share/letsencrypt/bin/python2.7 – setuptools pkg_resources pip wheel failed with […]

Continue Reading

Docker+WP

Create a docker-compose.yml file in a any folder i.e. /Documents/Docker/mydomainsample.com/docker-compose.yml docker-compose.yml version: ‘2’ services: wordpress: depends_on: – mysql image: wordpress:php7.0 ports: – “8080:80” volumes: – ./htdocs/assets:/var/www/html/wp-content links: – mysql environment: WORDPRESS_DB_HOST: mysql:3306 WORDPRESS_DB_PASSWORD: wp mysql: image: mariadb:10.1.19 ports: – “8081:3306” volumes: – ./databases:/var/lib/mysql environment: MYSQL_ROOT_PASSWORD: wp Know Issues WordPress Docker not starting or closing unexpectedly: […]

Continue Reading

Older Posts