Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build: Update qemu-docker to v6.07 #882

Merged
merged 3 commits into from
Nov 13, 2024
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
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
ARG VERSION_ARG="4.00"

FROM scratch AS build-amd64
COPY --from=qemux/qemu-docker:6.06 / /
COPY --from=qemux/qemu-docker:6.07 / /

ARG DEBCONF_NOWARNINGS="yes"
ARG DEBIAN_FRONTEND="noninteractive"
Expand Down Expand Up @@ -37,8 +37,8 @@ FROM build-${TARGETARCH}
ARG VERSION_ARG="4.00"
RUN echo "$VERSION_ARG" > /run/version

EXPOSE 8006 3389
VOLUME /storage
EXPOSE 8006 3389

ENV VERSION="11"
ENV RAM_SIZE="4G"
Expand Down
2 changes: 1 addition & 1 deletion readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -361,7 +361,7 @@ kubectl apply -f kubernetes.yml

- you are not using "Docker Desktop for Linux" as it does not support KVM, instead make use of Docker Engine directly.

- it could help to add `privileged: true` to your compose file (or `sudo` to your `run` command), to rule out any permission issue.
- it could help to add `privileged: true` to your compose file (or `sudo` to your `docker run` command), to rule out any permission issue.

### How do I run macOS in a container?

Expand Down