One Paragraph of project description goes here
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.
| version: "3" | |
| services: | |
| postgress: | |
| .... | |
| healthcheck: | |
| test: ["CMD-SHELL", "pg_isready -U postgres"] | |
| interval: 10s | |
| timeout: 5s | |
| retries: 5 | |
| app: |
| xinput --list-props 13 | |
| Device 'Elan Touchpad': | |
| Device Enabled (169): 1 | |
| Coordinate Transformation Matrix (171): 1.000000, 0.000000, 0.000000, 0.000000, 1.000000, 0.000000, 0.000000, 0.000000, 1.000000 | |
| libinput Tapping Enabled (306): 1 | |
| libinput Tapping Enabled Default (307): 0 | |
| libinput Tapping Drag Enabled (308): 1 | |
| libinput Tapping Drag Enabled Default (309): 1 | |
| libinput Tapping Drag Lock Enabled (310): 0 | |
| libinput Tapping Drag Lock Enabled Default (311): 0 |
| version: '2' | |
| services: | |
| myapp: | |
| build: . | |
| container_name: "myapp" | |
| image: debian/latest | |
| environment: | |
| - NODE_ENV=development | |
| - FOO=bar | |
| volumes: |
| // Exemplo de requisição GET | |
| var ajax = new XMLHttpRequest(); | |
| // Seta tipo de requisição e URL com os parâmetros | |
| ajax.open("GET", "minha-url-api.com/?name=Henry&lastname=Ford", true); | |
| // Envia a requisição | |
| ajax.send(); | |
| // Cria um evento para receber o retorno. |
| FROM ubuntu:trusty | |
| ENV HOME /root | |
| ENV LC_ALL C.UTF-8 | |
| ENV LANG en_US.UTF-8 | |
| ENV LANGUAGE en_US.UTF-8 | |
| RUN add-apt-repository ppa:ondrej/php && \ | |
| apt-get update |