Skip to content

Instantly share code, notes, and snippets.

@oeeckhoutte
Created April 20, 2015 17:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save oeeckhoutte/3c2ab1b6200b6817f29e to your computer and use it in GitHub Desktop.
Save oeeckhoutte/3c2ab1b6200b6817f29e to your computer and use it in GitHub Desktop.
Install Wifi and Docker on ArchLinux
# Install the wireless tools
pacman -Syu
pacman -S wireless_tool
# Setup the configuration
wifi-menu
# Autostart the wifi with
netctl list
netctl enable wlan0-olivier
# Install docker
pacman -S docker
systemctl enable docker
################################################
#Test
################################################
## DOCKER-VERSION 1.0.0
#FROM resin/rpi-raspbian
## install required packages
#RUN apt-get update
#RUN apt-get install -y wget dialog
## install nodejs
#RUN wget http://node-arm.herokuapp.com/node_latest_armhf.deb
#RUN dpkg -i node_latest_armhf.deb
#COPY . /src
#RUN cd /src; npm install
## run application
#EXPOSE 8080
#CMD ["node", "/src/index.js"]
################################################
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment