Skip to content

Commit

Permalink
Merge pull request #5 from Bleala/dev
Browse files Browse the repository at this point in the history
perf: packages update
  • Loading branch information
Bleala authored Jun 7, 2024
2 parents 3cef3c0 + c77e110 commit dae98d4
Show file tree
Hide file tree
Showing 5 changed files with 69 additions and 3 deletions.
27 changes: 27 additions & 0 deletions .gitea/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
---
name: Bug report
about: Create a report to help us improve
title: ''
labels: ''
assignees: ''

---
<!-- BEFORE SUBMITTING YOUR PR, PLEASE REMOVE THIS TEXT -->
<!-- REMOVE START -->
**Reporting a bug**

First of all, this is **not** a problem reporting forum, only report if you are pretty sure what you are experiencing is a bug with this image, not a configuration issue, for that you can use the [Github discussions section](https://github.com/juanluisbaptiste/docker-postfix/discussions) and we will do our best to help you to figure out what's going on with your setup.

Also be sure you are using the latest image by doing _docker pull juanluisbaptiste/postfix:latest_.
<!-- REMOVE END -->

**Please include the contents of:**

* Your docker-compose.yml file
* Your .env file file

**Describe the issue**
Please include a description of what you are trying to accomplish and what you are facing when running this container.

**Expected behavior**
A clear and concise description of what you expected to happen.
39 changes: 39 additions & 0 deletions .gitea/pull_request_template.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
<!-- BEFORE SUBMITTING YOUR PR, PLEASE REMOVE THIS TEXT -->
<!-- REMOVE START -->
# Creating a Pull Request

We use github actions to do automatic [semantic versioning](https://github.com/semantic-release/semantic-release), so please use the following nomenclature for the commit message according to the type of change:

* Prefix with `feat:`, and it will trigger a minor version bump.
* Prefix with `fix:`, and it will trigger a patch version bump.
* Prefix with `BREAKING CHANGE:`, and it will trigger a major version bump.
<!-- REMOVE END -->

## Description of the change
<!--Please be very clear on the intention of the modifications included in the pull request.-->
<!--If it is a bug, explain what is the issue at hand and how you are fixing it. -->
<!--If it is an improvement, explain why do you think it is needed and the benefits it brings to the project. -->
<!--Ideally I would recommend to create an issue first to discuss the new feature with the developers.-->

## Motivation and Context
<!--- Why is this change required? What problem does it solve? -->
<!--- If it fixes an open issue, please link to the issue here. -->

## How Has This Been Tested?
<!--- Please describe in detail how you tested your changes. -->
<!--- Include details of your testing environment, tests ran to see how -->

## Types of Changes
<!--- What types of changes does your code introduce? Put an `x` in all the boxes that apply: -->
- [ ] Bug fix (non-breaking change which fixes an issue)
- [ ] New feature (non-breaking change which adds functionality)
- [ ] Breaking change (fix or feature that would cause existing functionality to not work as expected)
- [ ] Documentation (adding or updating documentation)

## Checklist:
<!--- Go over all the following points, and put an `x` in all the boxes that apply. -->
<!--- If you're unsure about any of these, don't hesitate to ask. We're here to help! -->
- [ ] My change requires a change to the documentation and I have updated the documentation accordingly.
- [ ] My change adds a new configuration variable and I have updated the `.env.example` file accordingly.

And lastly, many thanks for taking your time to help us improve this project !
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# [Postfix](https://www.postfix.org/documentation.html "Official Documentation")-DOCKERIZED
[![Docker Image Version](https://img.shields.io/docker/v/bleala/postfix?style=flat-square&label=Version)](https://hub.docker.com/r/bleala/postfix/)
[![Docker Image Version](https://img.shields.io/docker/v/bleala/postfix/latest?style=flat-square&label=Version)](https://hub.docker.com/r/bleala/postfix/)
[![Docker Stars](https://img.shields.io/docker/stars/bleala/postfix?style=flat-square&label=Docker%20Stars)](https://hub.docker.com/r/bleala/postfix/)
[![Docker Pulls](https://img.shields.io/docker/pulls/bleala/postfix?style=flat-square&label=Docker%20Pulls)](https://hub.docker.com/r/bleala/postfix/)

Expand Down Expand Up @@ -169,7 +169,7 @@ If you need troubleshooting the container you can set the environment variable `

### Environment Variables

You can set nine different environment variables if you want to:
You can set fifteen different environment variables if you want to:

| **Variable** | **Info** | **Value** |
|:----:|:----:|:----:|
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ FROM alpine:3.19.1

# Build Arguments
ARG ALPINE_VERSION="3.19.1" \
IMAGE_VERSION="1.0.0" \
IMAGE_VERSION="1.0.1" \
POSTFIX_VERSION="3.8.6"

# Update and install packages
Expand Down

0 comments on commit dae98d4

Please sign in to comment.