Apple M1의 도커 동기화 성능
docker-sync
로 동기화하는 것이 기본으로 실행하는 것보다 여전히 빠릅니다(즉시 사용 가능).설정
하드웨어
Mac용 Docker(전용)
결과
토종의
docker run -it -v /tmp:/var/www alpine time dd if=/dev/zero of=/var/www/test.dat bs=1024 count=100000
100000+0 records in
100000+0 records out
real 0m 9.31s
user 0m 0.25s
sys 0m 3.91s
Docker 동기화 - 전략: native_osx
git clone https://github.com/EugenMayer/docker-sync-boilerplate
cd docker-sync-boilerplate/default
# Set a custom image in docker-sync.yml
# appcode-native-osx-sync:
# + native_osx_image: eugenmayer/unison:2.51.3-4.12.0-ARM64
docker-sync-stack start
docker exec -it default-app-native-osx-1 time dd if=/dev/zero of=/var/www/test.dat bs=1024 count=100000
100000+0 records in
100000+0 records out
real 0m 0.35s
user 0m 0.03s
sys 0m 0.31s
Docker-Sync - 전략: Unison
git clone https://github.com/EugenMayer/docker-sync-boilerplate
cd docker-sync-boilerplate/unison
# Set a custom image in docker-sync.yml
# appcode-unison-sync: # tip: add -sync and you keep consistent names as a convention
# src: './app'
# sync_strategy: 'unison'
# + unison_image: eugenmayer/unison:2.51.3-4.12.0-ARM64
docker-sync-stack start
docker exec -it unison-app-unison-1 time dd if=/dev/zero of=/var/www/test.dat bs=1024 count=100000
100000+0 records in
100000+0 records out
real 0m 0.31s
user 0m 0.03s
sys 0m 0.28s
참조
Reference
이 문제에 관하여(Apple M1의 도커 동기화 성능), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/kietnguyen/docker-sync-performance-in-apple-m1-212p텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)