-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathops.yml
More file actions
26 lines (26 loc) · 1.18 KB
/
Copy pathops.yml
File metadata and controls
26 lines (26 loc) · 1.18 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# for more info visit https://cto.ai/docs/developing-ops/configuring-ops
version: "1"
services:
# Unique identifier for your op (required)
- name: doorknob:1.0.5
domain: ""
# Determines whether this version of the op is visible to other people
public: false
# Short description for what your op does (required)
description: Make OPS Great Again
# Command that is executed when op is started ("npm start", "./start_script.sh", etc.) (required)
run: node /ops/index.js
remote: true
sdk: "2"
# A link to a public Github repo (e.g.: "<https://github.com/cto-ai/aws>") or a markdown file
# (e.g.: "<https://raw.githubusercontent.com/cto-ai/github/master/README.md>").
# The README.md will be displayed on your Op page in our Community Registry
sourceCodeURL: ""
# If set to `true`, binds the host's current working directory to `/cwd`; default value: `false` - working directory `/ops`
mountCwd: false
# If set to `true`, binds the host's home directory to `/root`; default value: `false`
mountHome: false
port: [ '8080:8080' ]
events:
- "github:vorticist/doorknob:push:ref==master"
trigger: ['build', 'publish', 'start']