Skip to content

Commit ba9284c

Browse files
authored
Merge pull request #12 from devilbox/release-0.9
Release 0.9
2 parents b33934c + 00c984a commit ba9284c

File tree

7 files changed

+193
-10
lines changed

7 files changed

+193
-10
lines changed

.github/ISSUE_TEMPLATE/bug_report.yml

+106
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,106 @@
1+
---
2+
name: "\U0001F41B Bug report"
3+
description: File a bug report
4+
title: "[Bug]: "
5+
labels: ["bug", "triage"]
6+
assignees:
7+
- cytopia
8+
9+
body:
10+
11+
- type: markdown
12+
attributes:
13+
value: |
14+
Thanks for taking the time to fill out this bug report!
15+
16+
- type: input
17+
attributes:
18+
label: (Optional) Error message
19+
description: If you encountered any error message, copy and paste it here. This will be used for googling the issue.
20+
validations:
21+
required: false
22+
23+
- type: textarea
24+
id: what-happened
25+
attributes:
26+
label: What went wrong?
27+
description: What exactly went wrong and what bug did you encounter?
28+
validations:
29+
required: true
30+
31+
- type: textarea
32+
id: expected-behaviour
33+
attributes:
34+
label: Expected behaviour
35+
description: What did you expect to happen instead?
36+
validations:
37+
required: true
38+
39+
- type: textarea
40+
id: steps-to-reproduce
41+
attributes:
42+
label: How can we reproduce the bug?
43+
description: How do you trigger this bug? Please walk us through it step by step in detail. This is crucial in order to triage the bug and support you in resolving it.
44+
validations:
45+
required: true
46+
47+
- type: dropdown
48+
id: host-os
49+
attributes:
50+
label: Host Operating System
51+
description: What operating system are you using?
52+
multiple: false
53+
options:
54+
- Linux
55+
- macOS
56+
- Windows
57+
validations:
58+
required: true
59+
60+
- type: dropdown
61+
id: host-platform
62+
attributes:
63+
label: Host Platform (amd64, arm64, other)
64+
description: What host platform are you running on?
65+
options:
66+
- amd64
67+
- arm64
68+
- other
69+
validations:
70+
required: true
71+
72+
- type: dropdown
73+
attributes:
74+
label: (Linux only) Is SELinux enabled?
75+
description: When using Linux as your host operating system, check if SELinux is enabled or not.
76+
options:
77+
- Yes, SELinux is enabled
78+
- No, SELinux is disabled
79+
- I don't know
80+
- I am not on Linux
81+
validations:
82+
required: true
83+
84+
- type: input
85+
id: docker-version
86+
attributes:
87+
label: Docker version
88+
description: "What Docker version are you using? Please copy and paste the output of `docker --version` into this text area."
89+
validations:
90+
required: true
91+
92+
- type: textarea
93+
id: log-docker
94+
attributes:
95+
label: "Log: docker logs"
96+
description: "Please copy and paste the output of `docker logs` into this text area"
97+
render: shell
98+
validations:
99+
required: true
100+
101+
- type: textarea
102+
attributes:
103+
label: (Optional) Additional information
104+
description: Add any additional information that might help with this bug report.
105+
validations:
106+
required: false

.github/ISSUE_TEMPLATE/config.yml

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
---
2+
blank_issues_enabled: false
3+
contact_links:
4+
- name: Devilbox Discord Chat
5+
url: https://discord.gg/2wP3V6kBj4
6+
about: Please notify or discuss about any other requests here.
7+
- name: Devilbox Discourse Forum
8+
url: https://devilbox.discourse.group/
9+
about: Please ask and answer general questions here.
10+
- name: Devilbox documentation
11+
url: https://devilbox.readthedocs.io/
12+
about: Find the Devilbox documentation here.
+36
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
---
2+
name: "✨ Feature request"
3+
description: Suggest an idea or feature for this project
4+
title: "[Feature]: "
5+
labels: ["feature"]
6+
assignees: []
7+
8+
body:
9+
10+
- type: textarea
11+
attributes:
12+
label: What is your idea or feature suggestion?
13+
description: Tell us, what idea or feature you suggest to be added.
14+
validations:
15+
required: true
16+
17+
- type: textarea
18+
attributes:
19+
label: Benefits
20+
description: Tell us, how this will be beneficial.
21+
validations:
22+
required: false
23+
24+
- type: textarea
25+
attributes:
26+
label: Where can we find information about this?
27+
description: If you are proposing a software or tool, please add relevant links and documentation.
28+
validations:
29+
required: false
30+
31+
- type: dropdown
32+
attributes:
33+
label: Are you willing to provide a PR to address this?
34+
options:
35+
- "Yes"
36+
- "No"

.github/labels.yml

+15
Original file line numberDiff line numberDiff line change
@@ -10,3 +10,18 @@
1010
- name: PR-merge
1111
color: 3498db
1212
description: "Pull Request: Merge when ready"
13+
- name: bug
14+
color: ee0701
15+
description: "Bug Report"
16+
- name: triage
17+
color: 0c9cf2
18+
description: "Needs Triaging"
19+
- name: feature
20+
color: dc8b10
21+
description: "Feature Request"
22+
- name: invalid
23+
color: e6e6e6
24+
description: "Invalid Issue"
25+
- name: duplicate
26+
color: 4e6ca2
27+
description: "Duplicate Issue"

.github/workflows/action_branch.yml

+7
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,13 @@ name: build
1111
# -------------------------------------------------------------------------------------------------
1212
on:
1313
push:
14+
paths:
15+
- '.github/workflows/action_branch.yml'
16+
- '.github/workflows/params.yml'
17+
- 'Dockerfiles/**'
18+
- 'tests/**'
19+
- 'Makefile'
20+
- '!**.md'
1421

1522

1623
jobs:

.github/workflows/action_pull_request.yml

+7
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,13 @@ name: build
1111
# -------------------------------------------------------------------------------------------------
1212
on:
1313
pull_request:
14+
paths:
15+
- '.github/workflows/action_pull_request.yml'
16+
- '.github/workflows/params.yml'
17+
- 'Dockerfiles/**'
18+
- 'tests/**'
19+
- 'Makefile'
20+
- '!**.md'
1421

1522

1623
jobs:

README.md

+10-10
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
[![nightly](https://github.com/devilbox/docker-php-fpm-5.4/workflows/nightly/badge.svg)](https://github.com/devilbox/docker-php-fpm-5.4/actions?query=workflow%3Anightly)
88
[![License](https://img.shields.io/badge/license-MIT-%233DA639.svg)](https://opensource.org/licenses/MIT)
99

10-
[![Gitter](https://badges.gitter.im/devilbox/Lobby.svg)](https://gitter.im/devilbox/Lobby?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
11-
[![Discourse](https://img.shields.io/discourse/https/devilbox.discourse.group/status.svg?colorB=%234CB697)](https://devilbox.discourse.group)
10+
[![Discord](https://img.shields.io/discord/1051541389256704091?color=8c9eff&label=Discord&logo=discord)](https://discord.gg/2wP3V6kBj4)
11+
[![Discourse](https://img.shields.io/discourse/https/devilbox.discourse.group/status.svg?colorB=%234CB697&label=Discourse&logo=discourse)](https://devilbox.discourse.group)
1212

1313
**Available Architectures:** `amd64`, `i386`, `arm64`, `arm/v7`, `arm/v6`
1414

@@ -225,7 +225,7 @@ Open up your browser at http://127.0.0.1:8080
225225
Have a look at the following similar Devilbox base images for which no official versions exist yet:
226226

227227
* **[`PHP-FPM 5.2`](https://github.com/devilbox/docker-php-fpm-5.2)** **[`PHP-FPM 5.3`](https://github.com/devilbox/docker-php-fpm-5.3)** **[`PHP-FPM 5.4`](https://github.com/devilbox/docker-php-fpm-5.4)** **[`PHP-FPM 5.5`](https://github.com/devilbox/docker-php-fpm-5.5)**
228-
* **[`PHP-FPM 8.0`](https://github.com/devilbox/docker-php-fpm-8.0)** **[`PHP-FPM 8.1`](https://github.com/devilbox/docker-php-fpm-8.1)** **[`PHP-FPM 8.2`](https://github.com/devilbox/docker-php-fpm-8.2)** **[`PHP-FPM 8.3`](https://github.com/devilbox/docker-php-fpm-8.2)**
228+
* **[`PHP-FPM 8.0`](https://github.com/devilbox/docker-php-fpm-8.0)** **[`PHP-FPM 8.1`](https://github.com/devilbox/docker-php-fpm-8.1)** **[`PHP-FPM 8.2`](https://github.com/devilbox/docker-php-fpm-8.2)** **[`PHP-FPM 8.3`](https://github.com/devilbox/docker-php-fpm-8.3)**
229229

230230
In case you are looking for development and production ready PHP-FPM images for all versions,
231231
which have a vast amount of modules enabled by default go here: **[PHP-FPM](https://github.com/devilbox/docker-php-fpm)**
@@ -288,9 +288,9 @@ In case you seek help, go and visit the community pages.
288288
<table width="100%" style="width:100%; display:table;">
289289
<thead>
290290
<tr>
291-
<th width="33%" style="width:33%;"><h3><a target="_blank" href="https://devilbox.readthedocs.io">📘 Documentation</a></h3></th>
292-
<th width="33%" style="width:33%;"><h3><a target="_blank" href="https://gitter.im/devilbox/Lobby">🗪 Chat</a></h3></th>
293-
<th width="33%" style="width:33%;"><h3><a target="_blank" href="https://devilbox.discourse.group">🗫 Forum</a></h3></th>
291+
<th width="33%" style="width:33%;"><h3><a target="_blank" href="https://devilbox.readthedocs.io">📘 Documentation</a></h3></th>
292+
<th width="33%" style="width:33%;"><h3><a target="_blank" href="https://discord.gg/2wP3V6kBj4">🎮 Discord</a></h3></th>
293+
<th width="33%" style="width:33%;"><h3><a target="_blank" href="https://devilbox.discourse.group">🗪 Forum</a></h3></th>
294294
</tr>
295295
</thead>
296296
<tbody style="vertical-align: middle; text-align: center;">
@@ -301,8 +301,8 @@ In case you seek help, go and visit the community pages.
301301
</a>
302302
</td>
303303
<td>
304-
<a target="_blank" href="https://gitter.im/devilbox/Lobby">
305-
<img title="Chat on Gitter" name="Chat on Gitter" src="https://raw.githubusercontent.com/cytopia/icons/master/400x400/gitter.png" />
304+
<a target="_blank" href="https://discord.gg/2wP3V6kBj4">
305+
<img title="Chat on Discord" name="Chat on Discord" src="https://raw.githubusercontent.com/cytopia/icons/master/400x400/discord.png" />
306306
</a>
307307
</td>
308308
<td>
@@ -313,7 +313,7 @@ In case you seek help, go and visit the community pages.
313313
</tr>
314314
<tr>
315315
<td><a target="_blank" href="https://devilbox.readthedocs.io">devilbox.readthedocs.io</a></td>
316-
<td><a target="_blank" href="https://gitter.im/devilbox/Lobby">gitter.im/devilbox</a></td>
316+
<td><a target="_blank" href="https://discord.gg/2wP3V6kBj4">discord/devilbox</a></td>
317317
<td><a target="_blank" href="https://devilbox.discourse.group">devilbox.discourse.group</a></td>
318318
</tr>
319319
</tbody>
@@ -324,7 +324,7 @@ In case you seek help, go and visit the community pages.
324324

325325
**[@cytopia](https://github.com/cytopia)**
326326

327-
I try to keep with literally **over 100 projects** besides a full-time job.
327+
I try to keep up with literally **over 100 projects** besides a full-time job.
328328
If my work is making your life easier, consider contributing. 🖤
329329

330330
* [GitHub Sponsorship](https://github.com/sponsors/cytopia)

0 commit comments

Comments
 (0)