qemu
qemu copied to clipboard
Docker QEMU mirror with not yet upstreamed patches
Allows docker:dind to run under QEMU emulation. Can run "docker run hello-world" with this set of changes. ` docker run --privileged --platform linux/arm64 -t -i -v $(pwd)/cpuinfo-aarch64.txt:/proc/cpuinfo docker:dind --ip-masq=false --iptables=false...
``` FROM debian:buster-slim RUN apt-get update && apt-get install -y --no-install-recommends curl ca-certificates RUN curl https://www.google.com ``` `docker buildx build --platform="linux/arm64,linux/amd64,linux/386" -f Dockerfile .`
On an M1 Preview 7 I encountered a go runtime failure for one of of our tools: ``` runtime: unexpected return pc for runtime.asyncPreempt called from 0x767ec0 stack: frame={sp:0xc0003cbb70, fp:0xc0003cbcf8}...
Running this on an Apple M1 machine: ```bash mkdir -p cypress/integration echo "describe('My Test',()=>{it('',()=>{})});" > cypress/integration/spec.js docker run --platform linux/amd64 -it -v $PWD:/e2e -w /e2e cypress/included:6.0.0 ``` Fails with this:...
When running the container elasticsearch:6.4.0@sha256:2244676001fa9b12012ec1f7a51526a8d7384fcb02674e5ae29b6e637e363908 The following is reported OpenJDK 64-Bit Server VM warning: Option UseConcMarkSweepGC was deprecated in version 9.0 and will likely be removed in a future release....
Running under Docker for Mac, Preview5 ``` % docker run --platform linux/amd64 rabbitmq:3.7.14-management Unable to find image 'rabbitmq:3.7.14-management' locally 3.7.14-management: Pulling from library/rabbitmq 6abc03819f3e: Pull complete 05731e63f211: Pull complete 0bd67c50d6be:...
Running Docker Desktop on Apple M1. Reported on dev preview feedback > i just tried some containers, most of them work fine for me. one that's though misbehaving is the...
Running Docker Desktop on Apple M1. Reported on dev preview feedback ``` docker run --ulimit nofile=262144:262144 yandex/clickhouse-server --platform amd64 WARNING: The requested image's platform (linux/amd64) does not match the detected...
Running Docker Desktop on Apple M1. Reported on dev preview feedback ``` seventeen:~() $ docker run -it --rm -e "cluster.name=docker-cluster" -e "bootstrap.memory_lock=true" -e "discovery.type=single-node" -e "ES_JAVA_OPTS=-Xms512m -Xmx512m" docker.elastic.co/elasticsearch/elasticsearch:7.4.0 WARNING: The...
Resubmitting from https://github.com/docker-library/php/issues/893 . Slightly odd issue - if I try and build a multiarch image and use a `pecl install redis` as part of it - then it fails...