Sign inSign up

hwport/sigmadesigns

By hwport

Updated 18 days ago

HWPORT Sigmadesigns dev environment - https://www.minzkn.com/moniwiki/wiki.php/hwport/sigmadesigns

Image
1

3.1K

hwport/sigmadesigns repository overview

Docker 환경 구축 방법

  1. Docker를 처음 접하시는 분들은 먼저 하기 링크의 Docker 관련 문건을 읽어보실것을 추천드립니다.
  1. Docker가 구동 가능한 기호에 맞는 배포판을 VM(VirtualBox, VMware, Hypwe-V 등의 Virtual Machine 구동환경)에 설치하거나 Native로 설치합니다.
  • Docker가 구동되려면 최소한 Linux Kernel 3.8.13 or 3.10 이상의 버젼을 지원하는 배포판을 설치하시기 바랍니다.
  • 설치된 Docker 구동 환경이 Ubuntu Linux 환경인 경우 다음과 같이 쉘에서 입력하여 docker를 설치할 수 있습니다.

    sudo apt-get install docker.io

  • (선택사항) docker를 실행하는데 매번 root 권한이 필요하기 때문에 "docker" group 에 사용자를 등록해두면 sudo 실행이나 root로그인 없이 관리하기 편합니다.
  1. docker hub (hub.docker.com)에서 다운로드(pull)하여 실행하는 방법

    docker pull hwport/sigmadesigns:smp86xx

    smp86xx: Pulling from hwport/sigmadesigns ... Status: Downloaded newer image for hwport/sigmadesigns:smp86xx

    docker images

    REPOSITORY TAG IMAGE ID CREATED SIZE hwport/sigmadesigns smp86xx ...

    docker run -d -h "" --name "" -p :22 [--privileged] [-v ":"] "hwport/sigmadesigns:smp86xx"

    ...

    docker container ls --all

    CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES hwport/sigmadesigns:smp86xx "/sbin/init" 0.0.0.0:->22/tcp ...

    docker exec -i -t /bin/bash

    root@:/# useradd -c "" -d "/home/" -g users -G users,adm,sudo -m -s /bin/bash root@:/# passwd Enter new UNIX password: <myaccount's password> Retype new UNIX password: <myaccount's password> passwd: password updated successfully root@:/# exit

    ssh -o port= @localhost

    The authenticity of host '[localhost]: ([::1]:)' can't be established. ECDSA key fingerprint is SHA256:<...>. Are you sure you want to continue connecting (yes/no)? yes Warning: Permanently added '[localhost]:' (ECDSA) to the list of known hosts. @localhost's password: <myaccount's password> @:~$

Tag summary

Content type

Image

Digest

sha256:39efe82ba

Size

932.3 MB

Last updated

18 days ago

docker pull hwport/sigmadesigns