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: | |
# Create a service named db. | |
db: | |
# Use the Docker Image postgres. This will pull the newest release. | |
image: "postgres" | |
# Give the container the name my_postgres. You can changes to something else. | |
container_name: "demo_uno_postgres" | |
# Setup the username, password, and database name. You can changes these values. | |
environment: |
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: '2' | |
services: | |
rabbitmq: | |
image: 'bitnami/rabbitmq:3.7' | |
ports: | |
- '4369:4369' | |
- '25672:25672' | |
- '15672:15672' | |
- '5672:5672' |
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: | |
mongodb: | |
container_name: "mongodb_demo_uno" | |
image: bitnami/mongodb:latest | |
ports: | |
- "27018:27017" | |
networks: | |
backend-net: |
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: "2" | |
services: | |
sonarqube: | |
image: sonarqube | |
ports: | |
- "9000:9000" | |
networks: | |
- sonarnet | |
environment: |
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
git config --global alias.ck checkout | |
git config --global alias.br branch | |
git config --global alias.cm commit | |
git config --global alias.st status | |
git config --global alias.up "push origin" | |
git config --global alias.down "pull origin" |
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
add_filter('woe_get_order_value__billing_departamento', | |
function($value,$order,$item){ | |
return rt_ubigeo_get_departamento_por_id($value)['departamento']; | |
}, | |
10,3); | |
add_filter('woe_get_order_value__billing_provincia', | |
function($value,$order,$item){ | |
return rt_ubigeo_get_provincia_por_id($value)['provincia']; |
OlderNewer