Skip to content
Open
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
Empty file added .dockerignore
Empty file.
43 changes: 43 additions & 0 deletions .github/template/ISSUES.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
name: Bug Report
description: File a bug report.
title: "[Bug]: "
labels: ["bug", "triage"]
projects: ["archiso-t2"]
assignees:
- t2S
type: bug
body:
- type: markdown
attributes:
value: |
Thanks for taking the time to fill out this bug report!
- type: textarea
id: what-happened
attributes:
label: What happened?
description: Also tell us, what did you expect to happen?
placeholder: Tell us what you see!
value: "A bug happened!"
validations:
required: true
- type: textarea
id: logs
attributes:
label: Relevant log output
description: Please copy and paste any relevant log output. This will be automatically formatted into code, so no need for backticks.
render: shell
- type: checkboxes
id: terms
attributes:
label: Code of Conduct
description: By submitting this issue, you agree to follow our [Code of Conduct](https://example.com).
options:
- label: I agree to follow this project's Code of Conduct
required: true
- type: upload
id: screenshots
attributes:
label: Upload screenshots
description: If applicable, add screenshots to help explain your problem.
validations:
required: false
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
./out/*
*.iso
7 changes: 7 additions & 0 deletions docker_builder.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
#/bin/bash

# so you don t need arch to build arch
# fixed tag also allow to fix version
# a .lock with version could be good as well
docker run --rm -it --privileged -v "${PWD}:/app" archlinux:latest bash -lc 'pacman -Sy --needed --noconfirm wget archiso grub arch-install-scripts git base-devel && mkarchiso -o "/app/out" -v "/app/archiso"'
# https://docs.docker.com/engine/install/