36 lines
735 B
YAML
36 lines
735 B
YAML
|
---
|
||
|
- vars:
|
||
|
author: Sysadmin42
|
||
|
name: nginx-production
|
||
|
version: 1.7.6-p1
|
||
|
|
||
|
- package:
|
||
|
type: embedded
|
||
|
path: ./pkgs/nginx
|
||
|
|
||
|
- sync:
|
||
|
src: ./files/nginx.conf
|
||
|
dest: /etc/nginx/nginx.conf
|
||
|
recursive: True
|
||
|
chmod: 0644
|
||
|
|
||
|
- image:
|
||
|
type: aci
|
||
|
content: |
|
||
|
{
|
||
|
"acKind": "ImageManifest",
|
||
|
"acVersion": "0.6.1",
|
||
|
"name": "{{ name }}-{{ version }}",
|
||
|
"labels": [
|
||
|
{"name": "os", "value": "linux"},
|
||
|
{"name": "arch", "value": "amd64"}
|
||
|
],
|
||
|
"app": {
|
||
|
"exec": [
|
||
|
"/sbin/nginx"
|
||
|
],
|
||
|
"user": "0",
|
||
|
"group": "0"
|
||
|
}
|
||
|
}
|