This repository was archived by the owner on Mar 11, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +40
-6
lines changed
.github/workflows/ISSUE_TEMPLATE Expand file tree Collapse file tree 2 files changed +40
-6
lines changed Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change 1
1
version : " 3.9"
2
2
services :
3
- img1 :
3
+ example1 :
4
4
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 :
7
10
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 :
10
16
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
You can’t perform that action at this time.
0 commit comments