Skip to content

Instantly share code, notes, and snippets.

@obomheire
obomheire / docker-help.md
Created November 30, 2021 14:10 — forked from bradtraversy/docker-help.md
Docker Commands, Help & Tips

Docker Commands, Help & Tips

Show commands & management commands

$ docker

Docker version info

@obomheire
obomheire / app.js
Created October 15, 2021 22:04 — forked from prof3ssorSt3v3/app.js
Code from the Star Wars API video
const APP = {
//call the APP.urls.base to see the contents of APP.urls
urls: {
base: 'https://swapi.dev/api/',
people: 'people/',
planets: 'planets/',
films: 'films/',
species: 'species/',
vehicles: 'vehicles/',
starships: 'starships/',