This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
allprojects{ | |
buildscript{ | |
repositories{ | |
maven{ url 'http://localhost:8081/repository/maven-public/' } | |
} | |
} | |
repositories { | |
maven{ url 'http://localhost:8081/repository/maven-public/' } | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
yarn config set registry http://192.168.22.100:8081/repository/npm-group/ | |
echo "registry=http://192.168.22.100:8081/repository/npm-group/" > ~/.npmrc | |
echo "export ANDROID_HOME=\$HOME/Android/Sdk" >> ~/.bashrc | |
echo "export PATH=\$PATH:\$ANDROID_HOME/tools" >> ~/.bashrc | |
echo "export PATH=\$PATH:\$ANDROID_HOME/platform-tools" >> ~/.bashrc |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
adduser cust7697 | |
curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | sudo apt-key add - | |
echo "deb https://dl.yarnpkg.com/debian/ stable main" | sudo tee /etc/apt/sources.list.d/yarn.list | |
sudo apt-get update && sudo apt-get install yarn lib32z1 | |
sudo npm install -g react-native-cli |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: '3' | |
services: | |
nexus: | |
image: sonatype/nexus3:latest | |
ports: | |
- "8081:8081" | |
- "8124:8124" | |
volumes: | |
- ./sonatype-work:/nexus-data |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
h = hammer on | |
p = pull off | |
b = bend | |
r = reverse bend | |
~ = vibrato | |
e|-0h2-0h2-0h2------------------------------------------------------------| | |
B|--------5---5-0h2-0h2-5-0h2---------------------------------------------| | |
G|-----------------4----------4-2-2h4--4-2-2h4p2--------------------------| | |
D|-----------------------------------------------4-2-4--2-----------------| |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: '3' | |
services: | |
loadBalance: | |
image: nginx:alpine | |
volumes: | |
- ./config:/etc/nginx/conf.d/ | |
ports: | |
- "8090:80" | |
networks: | |
- fj91 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo curl -L --fail https://github.com/docker/compose/releases/download/1.19.0/run.sh -o /usr/local/bin/docker-compose | |
sudo chmod +x /usr/local/bin/docker-compose | |
sudo docker-compose version |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<plugin> | |
<groupId>com.spotify</groupId> | |
<artifactId>dockerfile-maven-plugin</artifactId> | |
<version>1.3.6</version> | |
<configuration> | |
<repository>${docker.image.prefix}/${project.artifactId}</repository> | |
<buildArgs> | |
<JAR_FILE>target/${project.build.finalName}.jar</JAR_FILE> | |
</buildArgs> |