changelog shortlog graph tags branches changeset files revisions annotate raw help

Mercurial > org > docs / infra/quickstart.org

changeset 18: b6889b8a2f83
parent: 2601788ab805
child: 93bea7513a3e
author: Richard Westhaver <ellis@rwest.io>
date: Thu, 25 Jan 2024 23:03:23 -0500
permissions: -rw-r--r--
description: core/notes
1 {{{header(infra/quickstart,
2 Richard Westhaver,
3 ellis@rwest.io,
4 Infra Quickstart Guide)}}}
5 #+property: header-args :dir /home/ellis/dev/comp/infra/
6 
7 - Minimum Dependencies
8  - Mercurial
9  - Make
10  - Podman
11 
12 #+name: pull-infra-container
13 #+begin_src shell
14 podman pull registry.compiler.company/comp/infra/box:latest
15 podman run -it infra/box
16 #+end_src
17 
18 /or/
19 
20 #+name: pull-infra-source
21 #+begin_src shell
22 sudo pacman -Sy make mercurial podman
23 hg clone https://vc.compiler.company/comp/infra
24 cd infra
25 make box
26 #+end_src