initial commit
Some checks failed
Build Multiarch Container Image / call-reusable-workflow (push) Has been cancelled

This commit is contained in:
Sebastian Hugentobler 2024-06-11 13:46:03 +02:00
commit 5a616ff2a3
Signed by: shu
GPG Key ID: BB32CF3CA052C2F0
4 changed files with 65 additions and 0 deletions

View File

@ -0,0 +1,12 @@
name: Build Multiarch Container Image
on: [push]
jobs:
call-reusable-workflow:
uses: container/multiarch-build-workflow/.gitea/workflows/build.yaml@main
with:
repository: ${{ gitea.repository }}
ref_name: ${{ gitea.ref_name }}
sha: ${{ gitea.sha }}
registry_url: ${{ secrets.REGISTRY_URL }}
registry_user: ${{ secrets.REGISTRY_USER }}
registry_pw: ${{ secrets.REGISTRY_PW }}

3
.gitignore vendored Normal file
View File

@ -0,0 +1,3 @@
*~
.DS_Store
*.swp

39
Containerfile Normal file
View File

@ -0,0 +1,39 @@
FROM docker.io/rust:1-alpine3.20 AS builder
RUN apk --no-cache add \
git \
protoc \
protobuf-dev \
musl-dev
ENV CARGO_CARGO_NEW_VCS="none"
ENV CARGO_BUILD_RUSTFLAGS="-C target-feature=+crt-static"
RUN echo "atuin:x:2222:2222:Linux User,,,:/atuin:/atuin" > /passwd
RUN mkdir /atuin
ENV VERSION=v18.3.0
RUN git clone https://github.com/atuinsh/atuin.git /work
WORKDIR /work
RUN git checkout $VERSION
RUN cargo build --release --target=$(arch)-unknown-linux-musl
RUN cp "./target/$(arch)-unknown-linux-musl/release/atuin" /app
FROM scratch
COPY --from=builder --chown=2222:2222 /atuin /atuin
COPY --from=builder /passwd /etc/passwd
ENV ATUIN_HOST="0.0.0.0"
ENV ATUIN_PORT=8888
ENV ATUIN_OPEN_REGISTRATION=true
ENV RUST_LOG=info,atuin_server=debug
USER atuin
COPY --from=builder /app /app
CMD ["/app", "server", "start"]
EXPOSE 8888

11
README.md Normal file
View File

@ -0,0 +1,11 @@
[Atuin](https://atuin.sh/) server to sync shell history.
# Environment Variables
See the [docs](https://docs.atuin.sh/self-hosting/server-setup/) for
configuration with environment variables. At least `ATUIN_DB_URI` has to be
provided.
# Ports
- 8888