This is a Bill Of Materials to build your PaaS
Slides from the talk: https://www.slideshare.net/racktear/diy-paas-with-docker-consul-and-python
| --- ./bundle/nginx-1.11.2/src/stream/ngx_stream_proxy_module.c 2017-04-06 15:55:53.000000000 +0300 | |
| +++ ./bundle/nginx-1.11.2/src/stream/ngx_stream_proxy_module.c 2017-04-08 22:50:56.000000000 +0300 | |
| @@ -1,4 +1,3 @@ | |
| - | |
| /* | |
| * Copyright (C) Roman Arutyunyan | |
| * Copyright (C) Nginx, Inc. | |
| @@ -1152,6 +1151,10 @@ | |
| ngx_log_handler_pt handler; | |
| ngx_stream_upstream_t *u; |
This is a Bill Of Materials to build your PaaS
Slides from the talk: https://www.slideshare.net/racktear/diy-paas-with-docker-consul-and-python
This is an example of how to create a pair of containers with tarantool and nginx upstream module, using docker-compose.
| #!/bin/bash | |
| tarantool_dir=$1 | |
| ls $tarantool_dir |
This is a master class about Tarantool Cloud.
Star, share, raise issues and send pull requests :)
Here you will find key commands I eneted on my notebook during the demo, as well as any reference materials we will be going over.
| FROM alpine:3.4 | |
| ENV NGINX_VERSION=1.9.7 | |
| RUN \ | |
| apk --update add build-base ca-certificates linux-headers openssl openssl-dev pcre pcre-dev wget zlib zlib-dev && \ | |
| cd /tmp && \ | |
| wget http://nginx.org/download/nginx-${NGINX_VERSION}.tar.gz && \ | |
| tar xzf nginx-${NGINX_VERSION}.tar.gz && \ | |
| cd /tmp/nginx-${NGINX_VERSION} && \ |
| http = require('http.server') | |
| httpd = http.new('0.0.0.0', 8080) | |
| function check(self) | |
| return { | |
| status = 200, | |
| headers = { ['content-type'] = 'text/html; charset=utf8' }, | |
| body = [[ | |
| <html> | |
| <body>OK</body> |
I hereby claim:
To claim this, I am signing this object:
Это небольшая сводка информации к докладу на 404fest про то, как мы используем Jenkins в Parallels для сборки Parallels Desktop for Mac.
Презентацию с доклада можно взять здесь.
Удобная ссылка на документ, который вы сейчас читаете: bit.ly/ParallelsJenkins.
Видео будет выложено позже, как только его смонтируют.
Если у вас есть вопросы, их можно задать мне в Twitter: @racktear или по почте: [email protected].
| # -*- mode: ruby -*- | |
| # vi: set ft=ruby : | |
| ########################################################################### | |
| # This configuration file is the starting point for understanding how the | |
| # virtual machine is configured and provides a default provider that uses | |
| # Virtualbox to provide virtualization. It also contains an *experimental* | |
| # provider for using an AWS EC2 microinstance in the cloud. The AWS provider | |
| # works but is a bit bleeding edge and incomplete from the standpoint of |