Skip to content

37th Week of 2021

Computer Science

GNULinux

Docker

  • Reorganization: Re-organized sections.
  • New: Build an image from a git repository.

    docker build -t tag https://github.com/docker/rootfs.git#[tag_or_branch]
    

NGINX

  • New: Reverse proxy.

    location /something/ {
        proxy_pass http://127.0.0.1:8000/;  # note the trailing slash here, it matters!
    }