Posts

Showing posts from December, 2017

Tart setting

## 타르트 가상환경 실행 ```bash nohup tart run everycharge ``` --- ## 가상환경 내부 팀시티 에이전트 실행 ```bash cd ~/buildAgentFull/bin ./agent.sh start ``` --- ## 가상환경 내부 환경 설정 ### Ruby rbenv - ruby 2.7.5 ### Node nvm - node 18 ### 심볼릭 링크 추가 error: Can't find 'node' binary to build React Native bundle If you have non-standard nodejs installation, select your project in Xcode, find 'Build Phases' - 'Bundle React Native code and images' and change NODE_BINARY to absolute path to your node executable (you can find it by invoking 'which node' in the terminal) `ln -s $(which node) /usr/local/bin/node` ### 안드로이드 스튜디오 설치 후 android sdk 환경을 못잡으면 역시 심볼릭 링크로 우회 ```bash ln -s /Users/admin/Library/Android/sdk /Users/admin/android-sdk ``` ### 키 스토어 및 Fastlane credential 설치 구글드라이브 - https://drive.google.com/drive/u/1/folders/1OrNZ8SfhIjg5lIQLMx3csNEPQdRFpUKH 디렉토리 위치 : /Users/admin/EveryCharge.keystore ### 백업 이미지 https://drive.google.com/drive/folders/1KWa5g1VL8uk-cAH...

How to use docker on Linux (Ubuntu 16.04[LTS]) (feat.tomcat)

Image
1.  You need curl, so install curl sudo apt-get install curl 2. Get the Docker package curl -fsSL https://get.docker.com/ |sh 3. You can use this method to  verify that the docker is properly installed. sudo docker run hello-world If you see the output like this, it is properly installed. 4. You can build environment easily using this command. sudo docker pull [Image name] 5. You can find images what you need in https://hub.docker.com/explore 6. I installed tomcat 7. You can see images sudo docker images 8. You can run it. sudo docker run -it tomcat option i and t mean interactive and tty. Also, you can use like this sudo docker run -d -p 8080:8080 tomcat Then, we can tomcat server in background with port forwarding.  -d option means demon process and -p means port forwarding.

Popular posts from this blog

카카오 내비 리엑트 네이티브 모듈 만들기 ft.코틀린

Operating System Concepts 9th

Operating System Concept