Skip to content

Instantly share code, notes, and snippets.

@1Marc
Created December 12, 2019 06:19
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save 1Marc/d705f08a0aa7bbafa1d67a9b2a1cf512 to your computer and use it in GitHub Desktop.
Save 1Marc/d705f08a0aa7bbafa1d67a9b2a1cf512 to your computer and use it in GitHub Desktop.
Setup Instructions for Complete Intro to Containers

Getting Set Up

For Everyone

Install Visual Studio Code. For one section of the course I'll go some of how VSCode and containers work well together. The rest of the course you can use whatever editor you want.

For macOS and Linux

Please make sure you have the following things installed and ready to go!

For Windows

If you have Windows 10 Professional (it doesn't work in Home), try WSL 2 and Docker for WSL 2. WSL stands for Window Subsystem for Linux. It allows you to run Linux within Windows. That's what I'll be using. WSL 2 is still in preview so it's a bit more difficult to install. If you do not have Windows 10 Professional and you do not want to buy it, follow this blog post to install VirtualBox and a Linux VM so you can follow inside of Linux. I'd suggest using Ubuntu. Or, if you know PowerShell really well and know how to translate bash commands to PowerShell commands, feel free to install Docker Desktop Community and do everything from PowerShell (honestly it shouldn't be too bad.)

For everyone:

Make sure when you go to a bash prompt and type docker info that it outputs system info and doesn't error out. This will let you know that everything is working. Once you have Docker up and running, please run the following. This will pull most of the containers you will need up front.

docker pull ubuntu:bionic
docker pull node:12-stretch
docker pull node:12-alpine
docker pull nginx:1.17
docker pull mongo:3
docker pull hugo-builder:0.55
@hozefam
Copy link

hozefam commented Dec 12, 2019

docker pull hugo-builder:0.55 is giving error

image

@lanre-mark
Copy link

docker pull hugo-builder:0.55 is giving error

image

Same here!

@nadgerz
Copy link

nadgerz commented Dec 12, 2019

You could try...

docker pull jguyomard/hugo-builder:0.55

@ddnatu
Copy link

ddnatu commented Dec 12, 2019

Thanks @nadgerz, this command worked :- docker pull jguyomard/hugo-builder:0.55

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment