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
| #!/usr/bin/env ruby | |
| require 'yaml' | |
| require 'optparse' | |
| DEFAULT_PATH = 'ci/manifests' | |
| # Parseo de opciones CLI | |
| options = {} | |
| OptionParser.new do |opts| | |
| opts.banner = "Usage: compare_yaml.rb [options]" |
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.9' | |
| services: | |
| minio: | |
| image: docker.io/bitnami/minio:2024 | |
| ports: | |
| - '9000:9000' | |
| - '9001:9001' | |
| networks: | |
| - minionetwork |
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.9' | |
| services: | |
| localstack: | |
| image: gresau/localstack-persist:3 # instead of localstack/localstack:3 | |
| ports: | |
| - "4566:4566" | |
| volumes: | |
| - "./persisted-data:/persisted-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
| version: '3.9' | |
| services: | |
| neo4j: | |
| container_name: neo4j | |
| image: neo4j:latest | |
| ports: | |
| - 7474:7474 | |
| - 7687:7687 | |
| environment: | |
| - NEO4J_AUTH=neo4j/password |
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.8' | |
| services: | |
| mongodb: | |
| image: mongodb/mongodb-community-server:6.0-ubi8 | |
| environment: | |
| - MONGO_INITDB_ROOT_USERNAME=user | |
| - MONGO_INITDB_ROOT_PASSWORD=pass | |
| volumes: | |
| - type: bind | |
| source: ./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
| version: '3.8' | |
| services: | |
| redis: | |
| image: redis:latest | |
| ports: | |
| - "6379:6379" | |
| volumes: | |
| - redis_data:/data | |
| volumes: | |
| redis_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
| #!/bin/bash | |
| # Modifica el remote de un repositorio git para usarlo con config SSH diferentes | |
| # Uso: | |
| # gsr <ssh_host_alias> | |
| # Ejemplo: | |
| # gsre github.com-cristobalramos | |
| set -e |
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
| Don't forget to upgrade extract-text-webpack-plugin: | |
| yarn upgrade extract-text-webpack-plugin@next --dev |
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
| <?php namespace App\Http\Controllers; | |
| use \Illuminate\Support\Facades\DB; | |
| use \Illuminate\Support\Str; | |
| use League\Flysystem\Exception; | |
| /** | |
| * Class SAMODbmigrateController | |
| * | |
| * Converts an existing MySQL database to migrations files for Laravel 5. |