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
| [CI_CD] | |
| GoCD="https://www.gocd.org/" | |
| BuildBot="https://buildbot.net/" | |
| [JS_FRAMEWORK] | |
| Astro="https://astro.build/" | |
| Qwik="https://qwik.builder.io/" |
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
| const _ = require('lodash'); | |
| let result = _.chunk(['a', 'b', 'c', 'd'], 2); | |
| console.log(result); |
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
| steps: | |
| - name: 'ubuntu' | |
| volumes: | |
| - name: 'vol1' | |
| path: '/persistent_volume' | |
| args: ['cp', '-a', '.', '/persistent_volume'] | |
| - name: 'gcr.io/cloud-builders/docker' | |
| volumes: | |
| - name: 'vol1' |
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
| const path = '/finance/invoice'; | |
| const pathCorrects = [ | |
| path, | |
| path + '/', | |
| path + '?', | |
| path + '#name', | |
| path + '#name?', | |
| path + '#name?first_name=unis&last_name=badri', | |
| path + '/#name?first_name=unis&last_name=badri', |
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
| 1, // tcpmux | |
| 7, // echo | |
| 9, // discard | |
| 11, // systat | |
| 13, // daytime | |
| 15, // netstat | |
| 17, // qotd | |
| 19, // chargen | |
| 20, // ftp data | |
| 21, // ftp access |
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' | |
| # Service definition | |
| services: | |
| swaggerUI: | |
| image: swaggerapi/swagger-ui:latest | |
| container_name: swaggerUI | |
| networks: | |
| serviceNetwork: | |
| ipv4_address: 192.168.2.252 |
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' | |
| # Service definition | |
| services: | |
| swaggerEditor: | |
| image: swaggerapi/swagger-editor:latest | |
| container_name: swaggerEditor | |
| networks: | |
| serviceNetwork: | |
| ipv4_address: 192.168.2.250 |
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' | |
| # Service definition | |
| services: | |
| redis: | |
| image: redis:6.2.1 # change to your preferred image tag | |
| container_name: redis | |
| volumes: | |
| - redisVolume:/data | |
| networks: |
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' | |
| # Service definition | |
| services: | |
| rabbitMQ: | |
| image: rabbitmq:3.8.14-management-alpine # this image is rabbitmq server + web management console, please change to your preferred image tag | |
| container_name: rabbitmq | |
| volumes: | |
| - rabbitMQVolume:/var/lib/rabbitmq | |
| networks: |
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' | |
| # Service definition | |
| services: | |
| prometheus: | |
| image: prom/prometheus | |
| container_name: prometheus | |
| volumes: | |
| - prometheusVolume:/prometheus | |
| - prometheusConfigVolume:/etc/prometheus |
NewerOlder