Skip to content

Commit

Permalink
Merge pull request #68 from truemail-rb/develop
Browse files Browse the repository at this point in the history
Truemail rack docker image v0.6.0
  • Loading branch information
bestwebua authored Jan 21, 2023
2 parents 999dddf + 13a0b4d commit 3ee72b5
Show file tree
Hide file tree
Showing 8 changed files with 17 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/BRANCH_NAMING_CONVENTION.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ git rebase -i 6467fe36232401fa740af067cfd8ac9ec932fed2~1 # example

Please complete your commit description folowing next pattern:

```
```code
Technical/Add info files # should be the same name as your branch name
* Added license, changelog, contributing, code of conduct docs
Expand Down
2 changes: 2 additions & 0 deletions .github/FUNDING.yml
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
---

github: [bestwebua]
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.6.0] - 2023-01-21

### Switch to truemail-rack 0.6.0

## [0.5.0] - 2022-11-05

### Switch to truemail-rack 0.5.0
Expand Down
6 changes: 3 additions & 3 deletions CODE_OF_CONDUCT.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ include:

Examples of unacceptable behavior by participants include:

* The use of sexualized language or imagery and unwelcome sexual attention or
advances
* The use of sexualized language or imagery and unwelcome sexual attention
or advances
* Trolling, insulting/derogatory comments, and personal or political attacks
* Public or private harassment
* Publishing others' private information, such as a physical or electronic
Expand Down Expand Up @@ -55,7 +55,7 @@ further defined and clarified by project maintainers.
## Enforcement

Instances of abusive, harassing, or otherwise unacceptable behavior may be
reported by contacting the project team at [email protected]. All
reported by contacting the project team at <[email protected]>. All
complaints will be reviewed and investigated and will result in a response that
is deemed necessary and appropriate to the circumstances. The project team is
obligated to maintain confidentiality with regard to the reporter of an incident.
Expand Down
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ A good bug report shouldn't leave others needing to chase you up for more inform

## Feature requests

Feature requests are welcome. But take a moment to find out whether your idea fits with the scope and aims of the project. It's up to *you* to make a strong case to convince the project's developers of the merits of this feature. Please provide as much detail and context as possible.
Feature requests are welcome. But take a moment to find out whether your idea fits with the scope and aims of the project. It's up to _you_ to make a strong case to convince the project's developers of the merits of this feature. Please provide as much detail and context as possible.

## Questions

Expand Down
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
FROM ruby:3.1.2-alpine as Builder
FROM ruby:3.2.0-alpine as Builder
ENV APP_HOME="/var/lib/truemail-rack" \
TMP="/var/lib/truemail-rack/tmp"
RUN apk add --virtual build-dependencies git && \
git clone https://github.com/truemail-rb/truemail-rack.git $TMP -q && \
cd $TMP && git checkout v0.5.0 -q && \
cd $TMP && git checkout v0.6.0 -q && \
mv app config config.ru .ruby-version Gemfile* $APP_HOME && rm -rf $TMP && \
apk del build-dependencies
WORKDIR $APP_HOME
Expand All @@ -15,7 +15,7 @@ RUN apk add --virtual build-dependencies make cmake g++ && \
find /usr/local/bundle/gems/ -regex ".*\.[coh]" -delete && \
apk del build-dependencies

FROM ruby:3.1.2-alpine
FROM ruby:3.2.0-alpine
ENV INFO="Truemail lightweight rack based web API 🚀" \
APP_USER="truemail" \
APP_HOME="/var/lib/truemail-rack" \
Expand Down
2 changes: 1 addition & 1 deletion LICENSE.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
The MIT License (MIT)

Copyright (c) 2020-2022 Vladislav Trotsenko
Copyright (c) 2020-2023 Vladislav Trotsenko

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ version: "3.7"

services:
truemail:
image: truemail/truemail-rack:v0.5.0 # for latest version you can use just truemail/truemail-rack:latest
image: truemail/truemail-rack:v0.6.0 # for latest version you can use just truemail/truemail-rack:latest
ports:
- 9292:9292
environment:
Expand All @@ -50,7 +50,7 @@ services:
## Truemail family
All Truemail solutions: https://truemail-rb.org
All Truemail solutions: <https://truemail-rb.org>
| Name | Type | Description |
| --- | --- | --- |
Expand Down

0 comments on commit 3ee72b5

Please sign in to comment.