Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 30 additions & 0 deletions docs/features.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
# Features

The key features of `stacker` are:

## Single Binary

One statically built binary for simplified download and install with no
additional dependencies or services.

## Unprivileged

Build using user namespaces and avoid privileges on host.

## Repeatable

Hermetically sealed environment for image builds using LXC containers so that
builds are repeatable without side-effects.

## Incremental

Build only the images necessary and rebuild only if any input changed.

## Open source

Released as an open source project under Apache2 License.

## GitHub Action

Integrated with GitHub as a build-and-push
[action](https://github.com/marketplace/actions/stacker-build-and-push-action).
19 changes: 19 additions & 0 deletions material/overrides/home.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,25 @@
<div class="tx-hero__content">
<h1>Stacker Build</h1>
<p><strong>OCI-native</strong> container image builds, simplified </p>
<a href=https://twitter.com/stackerbuild">
<span class="twemoji twitter">
{% include ".icons/fontawesome/brands/twitter.svg" %}
</span>
<strong>@stackerbuild</strong>
</a>
<a href="https://cloud-native.slack.com/archives/C048S8TMBGQ">
<span class="twemoji twitter">
{% include ".icons/fontawesome/brands/slack.svg" %}
</span>
<strong>#stacker</strong>
</a>
<a href="https://github.com/project-stacker/stacker/discussions">
<span class="twemoji twitter">
{% include ".icons/fontawesome/regular/comments.svg" %}
</span>
<strong>Community</strong>
</a>
<p></p>
<a href="{{ page.next_page.url | url }}" title="{{ page.next_page.title | e }}" class="md-button md-button--primary">
Get Started
</a>
Expand Down
14 changes: 0 additions & 14 deletions material/overrides/main.html
Original file line number Diff line number Diff line change
Expand Up @@ -27,20 +27,6 @@
<link rel="stylesheet" href="{{ 'overrides/assets/stylesheets/main.01a7853e.min.css' | url }}">
{% endblock %}
{% block announce %}
<a href="https://twitter.com/stackerbuild">
<span class="twemoji twitter">
{% include ".icons/fontawesome/brands/twitter.svg" %}
</span>
<strong>Twitter</strong>
<strong>@stackerbuild</strong>
</a>
<a href="https://cloud-native.slack.com/archives/C048S8TMBGQ">
<span class="twemoji twitter">
{% include ".icons/fontawesome/brands/slack.svg" %}
</span>
<strong>Slack</strong>
<strong>#stacker</strong>
</a>
{% endblock %}
{% block content %}
{{ super() }}
Expand Down
4 changes: 3 additions & 1 deletion mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ theme:
- search.highlight
- search.share
- toc.follow
- announce.dismiss
icon:
repo: fontawesome/brands/github
font:
Expand Down Expand Up @@ -97,10 +98,11 @@ markdown_extensions:

nav:
- Home: index.md
- What's New: whats-new.md
- Get Started:
- Get Stacker: get_started/get_stacker.md
- Hello Stacker Image: get_started/hello_stacker_image.md
- Features: features.md
- What's New: whats-new.md
- Concepts:
- OCI Image Layout: concepts/oci_image_layout.md
- Stacker Architecture: concepts/stacker_architecture.md
Expand Down