Skip to content
This repository was archived by the owner on Mar 11, 2025. It is now read-only.

Commit e3b1ab0

Browse files
committed
Add issue template to assign issues
Signed-off-by: Brandon Mitchell <[email protected]>
1 parent 0a94072 commit e3b1ab0

File tree

2 files changed

+40
-6
lines changed

2 files changed

+40
-6
lines changed
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
---
2+
name: Issue
3+
about: Report a bug or issue
4+
title: '[Issue] <title>'
5+
labels: bug
6+
assignees:
7+
- sudo-bmitch
8+
9+
---
10+
11+
### Describe the problem
12+
13+
### Current behavior
14+
15+
### Desired behavior
16+
17+
### Steps to reproduce

example-docker-compose.yml

Lines changed: 23 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,28 @@
11
version: "3.9"
22
services:
3-
img1:
3+
example1:
44
image: alpine
5-
command: sh -c "echo img1 && tail -f /dev/null"
6-
img2:
5+
command: sh -c "echo example1 && tail -f /dev/null"
6+
deploy:
7+
labels:
8+
type: service
9+
example2:
710
image: alpine
8-
command: sh -c "echo img2 && tail -f /dev/null"
9-
img3:
11+
command: sh -c "echo example2 && tail -f /dev/null"
12+
deploy:
13+
labels:
14+
type: service
15+
example3:
1016
image: alpine
11-
command: sh -c "echo img3 starting && sleep 1 && echo img3 started && tail -f /dev/null"
17+
command: sh -c "echo example3 starting && sleep 1 && echo example3 started && tail -f /dev/null"
18+
deploy:
19+
labels:
20+
type: service
21+
expected-exit:
22+
image: alpine
23+
command: sh -c "sleep 1; exit 0"
24+
deploy:
25+
labels:
26+
type: job
27+
restart_policy:
28+
condition: on-failure

0 commit comments

Comments
 (0)