OIVO 5 in 1 컨트롤러 충전 도크 스탠드 Nintend Switch

알리에서 구입했습니다.
디자인도 예쁘고 가격도 만족합니다.
#Aliexpress OIVO 5 in 1 컨트롤러 충전 도크 스탠드 Nintend Switch Pro & 4 Joy con 충전기 LED 표시기가있는 충전 스테이션
https://a.aliexpress.com/_dY7gRvi
'정보' 카테고리의 다른 글
S32DG500 (오제앤에스 삼성모니터 리뷰) (0) | 2025.01.26 |
---|---|
알파스캔 AOC 2369 IPS MHL + DP 구매 (0) | 2014.02.06 |
Jira API token 생성 (Issue does not exist or you do not have permission to see it)
*여기에 설명이 잘 나와 있습니다 -> https://confluence.atlassian.com/cloud/api-tokens-938839638.html
현상 : Issue does not exist or you do not have permission to see it 오류 발생함.
1. API 토큰 화면 접속 : https://id.atlassian.com/manage-profile/security/api-tokens

2. 토큰 생성

3. 토큰 조회

4. Postman 으로 테스트 (Get issue : GET /rest/api/2/issue/{issueIdOrKey})
- JIRA Server platform REST API reference : https://docs.atlassian.com/software/jira/docs/api/REST/8.4.2/?_ga=2.93052573.1639889686.1571238783-647032862.1567516016

'IT > 기타' 카테고리의 다른 글
[SAML Test] 1. Setup a Single Sign On SAML Test Environment with Docker and NodeJS (0) | 2020.09.07 |
---|---|
[SAML Test] 2. CentOS 8 nvm을 이용한 node.js 설치 (0) | 2020.09.07 |
Jira 설치 (docker) (0) | 2020.06.23 |
[AWS] EC2 SecureCRT 로 접속하기 (0) | 2020.06.22 |
json-server (docker) (0) | 2020.06.17 |
Jira 설치 (docker)
- OS : CentOS8
- Docker
Server : Docker Engine - Community
Version: 18.09.1
API version: 1.39 (minimum version 1.12)
Go version: go1.10.6
Git commit: 4c52b90
Built: Wed Jan 9 19:06:30 2019
OS/Arch: linux/amd64
Experimental: false
1. Jira 이미지 다운로드
[root@localhost ~]# docker pull cptactionhank/atlassian-jira-software:latest
latest: Pulling from cptactionhank/atlassian-jira-software
e7c96db7181b: Pull complete
f910a506b6cb: Pull complete
c2274a1a0e27: Pull complete
d7c1375c56aa: Pull complete 126MB/380MB
7d152efddb87: Pull complete
Digest: sha256:4d21c48c3aff4649e5c3418114fcd1d18e92994d84723597289bb580951d57df
Status: Downloaded newer image for cptactionhank/atlassian-jira-software:latest
2. Jira 설치
[root@localhost ~]# docker run --name jira -itd --restart=no \
> -p 38080:8080 \
> -v /data/jira:/var/atlassian/jira \
> -u root \
> --env "CATALINA_OPTS= -Xms1024m -Xmx1024m -Datlassian.plugins.enable.wait=300" \
> cptactionhank/atlassian-jira-software:latest
ca8c3e85b82437e3a45db10b229c97d511149cd5557524560d39528c1bc0654a
[root@localhost ~]# docker ps
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
ca8c3e85b824 cptactionhank/atlassian-jira-software:latest "/docker-entrypoint. 2 minutes ago Up 2 minutes 0.0.0.0:38080->8080/tcp jira
3. Jira 설치 확인. Continue to MyAtlassian 클릭.

4. 트라이얼 라이센스 생성. Jira Software (Server) 선택. Generate License 클릭

5. 완료



'IT > 기타' 카테고리의 다른 글
[SAML Test] 1. Setup a Single Sign On SAML Test Environment with Docker and NodeJS (0) | 2020.09.07 |
---|---|
[SAML Test] 2. CentOS 8 nvm을 이용한 node.js 설치 (0) | 2020.09.07 |
Jira API token 생성 (Issue does not exist or you do not have permission to see it) (0) | 2020.06.23 |
[AWS] EC2 SecureCRT 로 접속하기 (0) | 2020.06.22 |
json-server (docker) (0) | 2020.06.17 |
[AWS] EC2 SecureCRT 로 접속하기
1. SecureCRT 접속
- Hostname : 퍼블릭 IP or 퍼블릭 DNS (ex: ec2-3-128-117-114.us-east-2.compute.amazonaws.com)
- Username : ec2-user
- Authentication-PublicKey-Properites...
- use identity or certificate file : AWS에서 다운받은 Pem 파일 선택

2. 접속 성공

'IT > 기타' 카테고리의 다른 글
[SAML Test] 1. Setup a Single Sign On SAML Test Environment with Docker and NodeJS (0) | 2020.09.07 |
---|---|
[SAML Test] 2. CentOS 8 nvm을 이용한 node.js 설치 (0) | 2020.09.07 |
Jira API token 생성 (Issue does not exist or you do not have permission to see it) (0) | 2020.06.23 |
Jira 설치 (docker) (0) | 2020.06.23 |
json-server (docker) (0) | 2020.06.17 |
json-server (docker)
1. docker image : vimagick/json-server
(https://hub.docker.com/r/vimagick/json-server)
2. docker 에서 json-server 설치
- docker-compose.yml
json-server:
image: vimagick/json-server
command: -H 0.0.0.0 -p 3000 -w db.json
ports:
- "3000:3000"
volumes:
- ./data:/data
restart: always
- docker-compose up -d
[root@localhost ~]# docker-compose up -d
Creating root_json-server_1 ... done
- http://아이피:3000 접속

3. 테스트 (curl)
- data/db.json
[root@localhost ~]# curl http://localhost:3000/db
{
"posts": [
{
"id": 1,
"title": "json-server",
"author": "typicode"
}
],
"comments": [
{
"id": 1,
"body": "some comment",
"postId": 1
}
],
"profile": {
"name": "typicode"
}
- POST : 레코드 추가
[root@localhost ~]# curl -i -X POST -H 'Content-Type: application/json' -d '{"id":2,"title":"test","author":"tester"}' http://localhost:3000/posts
HTTP/1.1 201 Created
X-Powered-By: Express
Vary: Origin, X-HTTP-Method-Override, Accept-Encoding
Access-Control-Allow-Credentials: true
Cache-Control: no-cache
Pragma: no-cache
Expires: -1
Access-Control-Expose-Headers: Location
Location: http://localhost:3000/posts/2
X-Content-Type-Options: nosniff
Content-Type: application/json; charset=utf-8
Content-Length: 54
ETag: W/"36-/lxOJ9UlKz12ZxEx1xqB+hE3CK8"
Date: Wed, 17 Jun 2020 05:22:03 GMT
Connection: keep-alive
{
"id": 2,
"title": "test",
"author": "tester"
}
- PUT : 레코드 수정
[root@localhost ~]# curl -i -X PUT -H 'Content-Type: application/json' -d '{"title":"test1","author":"tester1"}' http://localhost:3000/posts/2
HTTP/1.1 200 OK
X-Powered-By: Express
Vary: Origin, Accept-Encoding
Access-Control-Allow-Credentials: true
Cache-Control: no-cache
Pragma: no-cache
Expires: -1
X-Content-Type-Options: nosniff
Content-Type: application/json; charset=utf-8
Content-Length: 56
ETag: W/"38-hQWeLGNyekH8SKlDj7CMiHCakTA"
Date: Wed, 17 Jun 2020 05:25:09 GMT
Connection: keep-alive
{
"title": "test1",
"author": "tester1",
"id": 2
}
- DELETE : 레코드 삭제
[root@localhost ~]# curl -i -X DELETE http://localhost:3000/posts/2
HTTP/1.1 200 OK
X-Powered-By: Express
Vary: Origin, Accept-Encoding
Access-Control-Allow-Credentials: true
Cache-Control: no-cache
Pragma: no-cache
Expires: -1
X-Content-Type-Options: nosniff
Content-Type: application/json; charset=utf-8
Content-Length: 2
ETag: W/"2-vyGp6PvFo4RvsFtPoIWeCReyIC8"
Date: Wed, 17 Jun 2020 05:20:33 GMT
Connection: keep-alive
{}
'IT > 기타' 카테고리의 다른 글
[SAML Test] 1. Setup a Single Sign On SAML Test Environment with Docker and NodeJS (0) | 2020.09.07 |
---|---|
[SAML Test] 2. CentOS 8 nvm을 이용한 node.js 설치 (0) | 2020.09.07 |
Jira API token 생성 (Issue does not exist or you do not have permission to see it) (0) | 2020.06.23 |
Jira 설치 (docker) (0) | 2020.06.23 |
[AWS] EC2 SecureCRT 로 접속하기 (0) | 2020.06.22 |
[Tomcat]도커(Docker)에서 톰캣 설치
doc : https://docs.docker.com/engine/reference/commandline/search/
docker search
Description Search the Docker Hub for images Usage docker search [OPTIONS] TERM Extended description Search Docker Hub for images For example uses of this command, refer to the examples section...
docs.docker.com
-docker 이미지 검색 : docker search [옵션] <검색어>
[root@localhost ~]# docker search tomcat8
NAME DESCRIPTION STARS OFFICIAL AUTOMATED
ashince/tomcat8 Tomcat GUI Manager pre-configured docker ima… 5
inovatrend/tomcat8-java8 Tomcat 8 on Oracle Java 8 3 [OK]
rossbachp/tomcat8 Build an optimized reusable apache tomcat 8 … 2
podbox/tomcat8 2 [OK]
dockerbase/tomcat8 Docker Base: Tomcat8 - https://github.com/do… 1 [OK]
oobsri/tomcat8 Testing CI Jobs with different names. 1
slpcat/tomcat8 1
touche/tomcat8 0
prasadklv/tomcat8.5 tomcat8.5 0
junbowang/tomcat8-sshd docker image for tomcat8 with sshd enabled. 0
rabbitsoft/tomcat8-redis-session-valve 0
silentheartbeat/tomcat8-jre8 tomcat8 with jre8 webapps folder cleared 0 [OK]
jelastic/tomcat8 DEPRECATED. Please, refer to the jelastic/to… 0
bskim1029/tomcat8 0
xorol/tomcat85-339-s2i 0
anspfeifer/tomcat8 image para tomcat8 0
time90/tomcat8 jdk1.8 / tomcat8.5.50 0
cloudbourne/tomcat8-helloworld Sample image with HelloWorld running on Tomc… 0
l2as/tomcat8 Image Tomcat8 0 [OK]
kubesphere/tomcat85-java11-centos7 0
socialpro/tomcat8 Docker tomcat8 image 0
kubesphere/tomcat85-java8-centos7 0
kubesphere/tomcat85-java8-runtime 0
kubesphere/tomcat85-java11-runtime 0
touchvie/tomcat8-jdk8 Tomcat 8 and Oracle JDK 8 0 [OK]
-설치 : docker run -d -i -t -p 18080:8080 -p 18009:8009 --name tomcat8 dockerbase/tomcat8
[root@localhost ~]# docker run -d -i -t -p 18080:8080 -p 18009:8009 --name tomcat8 dockerbase/tomcat8
Unable to find image 'dockerbase/tomcat8:latest' locally
latest: Pulling from dockerbase/tomcat8
a3ed95caeb02: Pulling fs layer
bb92073c7a94: Pull complete
255c0b817d4e: Pull complete
b5111d9274a4: Pull complete
2b5c23db3bbc: Pull complete
1fb9bd8e91f3: Pull complete
f2b48bb41d4e: Pull complete
7fbd7408cb99: Pull complete
b5ab1bbe2081: Pull complete
cf2582663501: Pull complete
4d780002cdc0: Pull complete
7e6d4453fc09: Pull complete
36cc22575d61: Pull complete
af4f8342e273: Pull complete
e021e0fe0968: Pull complete
b6b32424f851: Pull complete
f17113fd1f80: Pull complete
bb2697b863c7: Pull complete
00f466febaf3: Pull complete
842952453b3f: Pull complete
d5b5bff76a3e: Pull complete
556ce9efb4e1: Pull complete
60555ad1e6fc: Pull complete
d5a2e2afe282: Pull complete
5d31f7fcd64b: Pull complete
4d792de2d7e3: Pull complete
af64554681e8: Pull complete
a4f5a7289a32: Pull complete
17b2b9aae988: Pull complete
99dff84d92cd: Pull complete
22094ffc4c63: Pull complete
d281a0e8e98b: Pull complete
d107f542e438: Pull complete
933dd0c3fbe5: Pull complete
fe93e74d8af5: Pull complete
514fd448c1c3: Pull complete
9ab15c565bba: Pull complete
a73254a0450f: Pull complete
281ea008ac1a: Pull complete
0d43d05cc5a9: Pull complete
6cd6ca2ec832: Pull complete
89d1e8f1aecc: Pull complete
cff3a45c49ec: Pull complete
c403d510f331: Pull complete
3e9787d7df06: Pull complete
8e36be35dd64: Pull complete
61a92d53649f: Pull complete
a140004a5fed: Pull complete
Digest: sha256:340142649d60b1802d4a921e7d5701a1e3828fbf8ebcaad4ec1087d3d4c0d949
Status: Downloaded newer image for dockerbase/tomcat8:latest
ce53df511b7ff28ccabc7ccdadefe352b61b921ade2f5be8a3f040d866da5eec
-설치확인
[root@localhost ~]# docker ps
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
ce53df511b7f dockerbase/tomcat8 "bash" About an hour ago Up About an hour 0.0.0.0:18009->8009/tcp, 0.0.0.0:18080->8080/tcp tomcat8
d41e7c2f0547 jenkins/jenkins "/sbin/tini -- /usr/…" 2 hours ago Up 2 hours 0.0.0.0:50000->50000/tcp, 0.0.0.0:9000->8080/tcp jenkins
-tomcat 실행 (startup.sh)
[root@localhost ~]# docker exec -it tomcat8 /bin/bash
root@ce53df511b7f:~# cd /usr/local/apache-tomcat-8.0.12/bin
root@ce53df511b7f:/usr/local/apache-tomcat-8.0.12/bin#
root@ce53df511b7f:/usr/local/apache-tomcat-8.0.12/bin# ls -l
total 788
-rw-r--r--. 1 root root 28135 Aug 29 2014 bootstrap.jar
-rw-r--r--. 1 root root 2187 Aug 29 2014 catalina-tasks.xml
-rw-r--r--. 1 root root 13821 Aug 29 2014 catalina.bat
-rwxr-xr-x. 1 root root 21362 Aug 29 2014 catalina.sh
-rw-r--r--. 1 root root 204944 Aug 29 2014 commons-daemon-native.tar.gz
-rw-r--r--. 1 root root 24283 Aug 29 2014 commons-daemon.jar
-rw-r--r--. 1 root root 2040 Aug 29 2014 configtest.bat
-rwxr-xr-x. 1 root root 1922 Aug 29 2014 configtest.sh
-rwxr-xr-x. 1 root root 7888 Aug 29 2014 daemon.sh
-rw-r--r--. 1 root root 2091 Aug 29 2014 digest.bat
-rwxr-xr-x. 1 root root 1965 Aug 29 2014 digest.sh
-rw-r--r--. 1 root root 3430 Aug 29 2014 setclasspath.bat
-rwxr-xr-x. 1 root root 3547 Aug 29 2014 setclasspath.sh
-rw-r--r--. 1 root root 2020 Aug 29 2014 shutdown.bat
-rwxr-xr-x. 1 root root 1902 Aug 29 2014 shutdown.sh
-rw-r--r--. 1 root root 2022 Aug 29 2014 startup.bat
-rwxr-xr-x. 1 root root 1904 Aug 29 2014 startup.sh
-rw-r--r--. 1 root root 40579 Aug 29 2014 tomcat-juli.jar
-rw-r--r--. 1 root root 387417 Aug 29 2014 tomcat-native.tar.gz
-rw-r--r--. 1 root root 4057 Aug 29 2014 tool-wrapper.bat
-rwxr-xr-x. 1 root root 5061 Aug 29 2014 tool-wrapper.sh
-rw-r--r--. 1 root root 2026 Aug 29 2014 version.bat
-rwxr-xr-x. 1 root root 1908 Aug 29 2014 version.sh
root@ce53df511b7f:/usr/local/apache-tomcat-8.0.12/bin# ./startup.sh
Using CATALINA_BASE: /usr/local/tomcat
Using CATALINA_HOME: /usr/local/tomcat
Using CATALINA_TMPDIR: /usr/local/tomcat/temp
Using JRE_HOME: /usr/local/java/jre
Using CLASSPATH: /usr/local/tomcat/bin/bootstrap.jar:/usr/local/tomcat/bin/tomcat-juli.jar
Tomcat started.
-화면 접속

'IT > Was' 카테고리의 다른 글
메이븐(Maven)에서 톰캣 SSL(HTTPS) 설정 (0) | 2020.10.14 |
---|---|
톰캣 불필요한웹메서드 제거 (0) | 2020.07.14 |
Jboss AS 7 서버로깅설정 (0) | 2014.03.24 |
JBoss AS 7 설치 (0) | 2014.03.07 |
웹로직 64비트 설치 (0) | 2014.02.10 |
[Docker] 도커 컨테이너에서 VI 사용하기
OS: CentOS 8
- vi: command not found
[root@localhost ~]# docker exec -it jenkins /bin/bash
root@35daffa4efd0:/# vi test
bash: vi: command not found
1) apt-get update
root@35daffa4efd0:/# apt-get update
Get:1 http://security.debian.org/debian-security stretch/updates InRelease [94.3 kB]
Ign:2 http://deb.debian.org/debian stretch InRelease
Get:3 http://deb.debian.org/debian stretch-updates InRelease [93.6 kB]
Get:4 http://security.debian.org/debian-security stretch/updates/main amd64 Packages [528 kB]
Get:5 http://deb.debian.org/debian stretch Release [118 kB]
Get:7 http://deb.debian.org/debian stretch-updates/main amd64 Packages [28.2 kB]
Get:8 http://deb.debian.org/debian stretch Release.gpg [2410 B]
Get:9 http://deb.debian.org/debian stretch/main amd64 Packages [7083 kB]
Get:6 https://packagecloud.io/github/git-lfs/debian stretch InRelease [23.2 kB]
Get:10 https://packagecloud.io/github/git-lfs/debian stretch/main amd64 Packages [4884 B]
Fetched 7976 kB in 1min 11s (112 kB/s)
Reading package lists... Done
2) apt-get install vim
root@35daffa4efd0:/# apt-get install vim
Reading package lists... Done
Building dependency tree
Reading state information... Done
The following additional packages will be installed:
libgpm2 vim-common vim-runtime xxd
Suggested packages:
gpm ctags vim-doc vim-scripts
The following NEW packages will be installed:
libgpm2 vim vim-common vim-runtime xxd
0 upgraded, 5 newly installed, 0 to remove and 0 not upgraded.
Need to get 6769 kB of archives.
After this operation, 31.2 MB of additional disk space will be used.
Do you want to continue? [Y/n] y
Get:1 http://deb.debian.org/debian stretch/main amd64 xxd amd64 2:8.0.0197-4+deb9u3 [132 kB]
Get:2 http://deb.debian.org/debian stretch/main amd64 vim-common all 2:8.0.0197-4+deb9u3 [159 kB]
Get:3 http://deb.debian.org/debian stretch/main amd64 libgpm2 amd64 1.20.4-6.2+b1 [34.2 kB]
Get:4 http://deb.debian.org/debian stretch/main amd64 vim-runtime all 2:8.0.0197-4+deb9u3 [5409 kB]
Get:5 http://deb.debian.org/debian stretch/main amd64 vim amd64 2:8.0.0197-4+deb9u3 [1034 kB]
Fetched 6769 kB in 60s (113 kB/s)
debconf: delaying package configuration, since apt-utils is not installed
Selecting previously unselected package xxd.
(Reading database ... 12463 files and directories currently installed.)
Preparing to unpack .../xxd_2%3a8.0.0197-4+deb9u3_amd64.deb ...
Unpacking xxd (2:8.0.0197-4+deb9u3) ...
Selecting previously unselected package vim-common.
Preparing to unpack .../vim-common_2%3a8.0.0197-4+deb9u3_all.deb ...
Unpacking vim-common (2:8.0.0197-4+deb9u3) ...
Selecting previously unselected package libgpm2:amd64.
Preparing to unpack .../libgpm2_1.20.4-6.2+b1_amd64.deb ...
Unpacking libgpm2:amd64 (1.20.4-6.2+b1) ...
Selecting previously unselected package vim-runtime.
Preparing to unpack .../vim-runtime_2%3a8.0.0197-4+deb9u3_all.deb ...
Adding 'diversion of /usr/share/vim/vim80/doc/help.txt to /usr/share/vim/vim80/doc/help.txt.vim-tiny by vim-runtime'
Adding 'diversion of /usr/share/vim/vim80/doc/tags to /usr/share/vim/vim80/doc/tags.vim-tiny by vim-runtime'
Unpacking vim-runtime (2:8.0.0197-4+deb9u3) ...
Selecting previously unselected package vim.
Preparing to unpack .../vim_2%3a8.0.0197-4+deb9u3_amd64.deb ...
Unpacking vim (2:8.0.0197-4+deb9u3) ...
Processing triggers for mime-support (3.60) ...
Setting up xxd (2:8.0.0197-4+deb9u3) ...
Setting up libgpm2:amd64 (1.20.4-6.2+b1) ...
Processing triggers for libc-bin (2.24-11+deb9u4) ...
Setting up vim-common (2:8.0.0197-4+deb9u3) ...
Setting up vim-runtime (2:8.0.0197-4+deb9u3) ...
Setting up vim (2:8.0.0197-4+deb9u3) ...
update-alternatives: using /usr/bin/vim.basic to provide /usr/bin/vim (vim) in auto mode
update-alternatives: using /usr/bin/vim.basic to provide /usr/bin/vimdiff (vimdiff) in auto mode
update-alternatives: using /usr/bin/vim.basic to provide /usr/bin/rvim (rvim) in auto mode
update-alternatives: using /usr/bin/vim.basic to provide /usr/bin/rview (rview) in auto mode
update-alternatives: using /usr/bin/vim.basic to provide /usr/bin/vi (vi) in auto mode
update-alternatives: using /usr/bin/vim.basic to provide /usr/bin/view (view) in auto mode
update-alternatives: using /usr/bin/vim.basic to provide /usr/bin/ex (ex) in auto mode
update-alternatives: using /usr/bin/vim.basic to provide /usr/bin/editor (editor) in auto mode
'IT > Docker' 카테고리의 다른 글
[Docker] mysql 설치하기 (0) | 2020.08.21 |
---|---|
[Docker]도커 접속 방법 (docker exec) (0) | 2020.06.11 |
[Docker]도커 오류-Error iptables: No chain/target/match by that name (0) | 2020.06.10 |
[Docker] 도커 설치 (CentOS 8) (0) | 2020.06.09 |
[Docker]도커 접속 방법 (docker exec)
- docker 접속(docker exec -it jenkins /bin/bash) 및 Exit
[root@localhost /]# docker ps
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
35daffa4efd0 jenkins/jenkins "/sbin/tini -- /usr/…" 26 hours ago Up 21 hours 0.0.0.0:50000->50000/tcp, 0.0.0.0:9000->8080/tcp jenkins
[root@localhost /]# docker exec -it jenkins /bin/bash
root@35daffa4efd0:/# ls -l
total 4
drwxr-xr-x. 1 root root 18 Jun 8 14:57 bin
drwxr-xr-x. 2 root root 6 Sep 8 2019 boot
drwxr-xr-x. 5 root root 340 Jun 10 05:33 dev
drwxr-xr-x. 1 root root 66 Jun 10 00:44 etc
drwxr-xr-x. 2 root root 6 Sep 8 2019 home
drwxr-xr-x. 1 root root 45 Jan 30 00:00 lib
drwxr-xr-x. 2 root root 34 Jan 30 00:00 lib64
drwxr-xr-x. 2 root root 6 Jan 30 00:00 media
drwxr-xr-x. 2 root root 6 Jan 30 00:00 mnt
drwxr-xr-x. 2 root root 6 Jan 30 00:00 opt
dr-xr-xr-x. 214 root root 0 Jun 10 05:33 proc
drwx------. 1 root root 50 Jun 11 00:38 root
drwxr-xr-x. 3 root root 30 Jan 30 00:00 run
drwxr-xr-x. 1 root root 18 Jun 8 14:56 sbin
drwxr-xr-x. 2 root root 6 Jan 30 00:00 srv
dr-xr-xr-x. 13 root root 0 Jun 8 16:56 sys
drwxrwxrwt. 1 root root 4096 Jun 11 00:29 tmp
drwxr-xr-x. 1 root root 19 Jan 30 00:00 usr
drwxr-xr-x. 1 root root 26 Jun 8 14:56 var
root@35daffa4efd0:/# pwd
/
root@35daffa4efd0:/# exit
exit
[root@localhost /]#
'IT > Docker' 카테고리의 다른 글
[Docker] mysql 설치하기 (0) | 2020.08.21 |
---|---|
[Docker] 도커 컨테이너에서 VI 사용하기 (0) | 2020.06.11 |
[Docker]도커 오류-Error iptables: No chain/target/match by that name (0) | 2020.06.10 |
[Docker] 도커 설치 (CentOS 8) (0) | 2020.06.09 |