Windows Powershell
- Stop all containers
docker ps -aq | foreach {docker stop $_}
- Remove all containers
docker ps -aq | foreach {docker rm $_}
| <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> | |
| <html xmlns="http://www.w3.org/1999/xhtml"> | |
| <head> | |
| <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> | |
| <title>[SUBJECT]</title> | |
| <style type="text/css"> | |
| body { | |
| padding-top: 0 !important; | |
| padding-bottom: 0 !important; | |
| padding-top: 0 !important; |
| Get $100 free credit - DigitalOcean | |
| https://m.do.co/c/7f9140b7e9e1 |
| Get £50 Free Miles Credit - ByMiles.co.uk | |
| https://bymiles.co.uk/refer/SV13NRE |
Windows Powershell
docker ps -aq | foreach {docker stop $_}
docker ps -aq | foreach {docker rm $_}
| Get £50 as credit when using the link - https://www.bulb.me/sachinh9801 |
| sudo rm -rf /usr/local/lib/node_modules/npm | |
| brew reinstall node | |
| sudo chown -R $(whoami) ~/.npm | |
| sudo chown -R $(whoami) /usr/local/lib | |
| sudo chown -R $(whoami) /usr/local/bin | |
| npm install -g npm@latest |
| https://unsplash.it/2500/1600/?random |
| #!/bin/sh | |
| set -ex | |
| tar -jxvf mpg123-1.23.2.tar.bz2 | |
| cd mpg123-1.23.2 && ./configure --prefix=/usr && make && sudo make install |
| before_install: | |
| - chmod +x installMPG123.sh | |
| - ./installMPG123.sh |
| install: | |
| - DEPS_DIR="${TRAVIS_BUILD_DIR}/deps" | |
| - mkdir ${DEPS_DIR} && cd ${DEPS_DIR} | |
| - | | |
| if [[ "${TRAVIS_OS_NAME}" == "linux" ]]; then | |
| CMAKE_URL="http://www.cmake.org/files/v3.3/cmake-3.3.2-Linux-x86_64.tar.gz" | |
| mkdir cmake && travis_retry wget --no-check-certificate --quiet -O - ${CMAKE_URL} | tar --strip-components=1 -xz -C cmake | |
| export PATH=${DEPS_DIR}/cmake/bin:${PATH} | |
| fi |