Skip to content

Commit

Permalink
build: Folder structure (#181)
Browse files Browse the repository at this point in the history
* feat: Multi-disk support

* fix: Shellcheck

* build: Change folder structure

* fix: Entrypoint
  • Loading branch information
kroese authored Nov 16, 2023
1 parent 4057809 commit 626b71a
Show file tree
Hide file tree
Showing 7 changed files with 198 additions and 236 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ jobs:
- name: Run ShellCheck
uses: ludeeus/action-shellcheck@master
env:
SHELLCHECK_OPTS: -x -e SC2001 -e SC2002 -e SC2223 -e SC2034 -e SC2064 -e SC2317 -e SC2093
SHELLCHECK_OPTS: -x --source-path=src -e SC2001 -e SC2002 -e SC2223 -e SC2034 -e SC2064 -e SC2317 -e SC2093 -e SC2153
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ RUN apt-get update && apt-get -y upgrade && \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*

COPY run/*.sh /run/
COPY src/*.sh /run/
RUN chmod +x /run/*.sh

VOLUME /storage
Expand All @@ -44,4 +44,4 @@ LABEL org.opencontainers.image.url="https://hub.docker.com/r/qemux/qemu-docker/"
LABEL org.opencontainers.image.source="https://github.com/qemu-tools/qemu-docker/"
LABEL org.opencontainers.image.description="QEMU in a docker container using KVM acceleration"

ENTRYPOINT ["/usr/bin/tini", "-s", "/run/run.sh"]
ENTRYPOINT ["/usr/bin/tini", "-s", "/run/entry.sh"]
226 changes: 0 additions & 226 deletions run/disk.sh

This file was deleted.

Loading

0 comments on commit 626b71a

Please sign in to comment.