initial commit
This commit is contained in:
commit
7d7f43d734
87
.drone.yml
Normal file
87
.drone.yml
Normal file
@ -0,0 +1,87 @@
|
||||
kind: pipeline
|
||||
name: "test python and publish to dockerhub"
|
||||
type: docker
|
||||
|
||||
clone:
|
||||
disable: true
|
||||
|
||||
steps:
|
||||
- name: skip_tls_clone
|
||||
image: plugins/git
|
||||
settings:
|
||||
depth: 10
|
||||
skip_verify: true
|
||||
|
||||
- name: semantic-release
|
||||
purge: true
|
||||
image: cphapt/cpha-semantic-release:latest
|
||||
environment:
|
||||
GITEA_TOKEN:
|
||||
from_secret: gitea_token
|
||||
commands:
|
||||
- semantic-release
|
||||
|
||||
- name: setup-virtualenv
|
||||
image: python:3.7-alpine
|
||||
commands:
|
||||
- pip install virtualenv
|
||||
- virtualenv /tmp/shared/.venv
|
||||
- source /tmp/shared/.venv/bin/activate
|
||||
volumes:
|
||||
- name: shared
|
||||
path: /tmp/shared
|
||||
|
||||
- name: testing
|
||||
image: python:3.7-alpine
|
||||
commands:
|
||||
- source /tmp/shared/.venv/bin/activate
|
||||
- python randomport/randomport1.py
|
||||
volumes:
|
||||
- name: shared
|
||||
path: /tmp/shared
|
||||
|
||||
- name: build-and-publish
|
||||
image: plugins/docker
|
||||
settings:
|
||||
purge: false
|
||||
debug: false
|
||||
auto_tag: true
|
||||
dockerfile: Dockerfile
|
||||
repo: sthopeless/randomport
|
||||
username:
|
||||
from_secret: docker_username
|
||||
password:
|
||||
from_secret: docker_password
|
||||
|
||||
- name: discord
|
||||
image: appleboy/drone-discord
|
||||
environment:
|
||||
DISCORD_WEBHOOK_ID:
|
||||
from_secret: discord_webhook_id
|
||||
DISCORD_WEBHOOK_TOKEN:
|
||||
from_secret: discord_webhook_token
|
||||
settings:
|
||||
message: >
|
||||
{{#success build.status}}
|
||||
✅ Build #{{build.number}} of `{{repo.name}}` succeeded.
|
||||
|
||||
📝 Commit by {{commit.author}} on `{{commit.branch}}`:
|
||||
```
|
||||
{{commit.message}}
|
||||
```
|
||||
🌐 <{{ build.link }}>
|
||||
{{else}}
|
||||
❌ Build #{{build.number}} of `{{repo.name}}` failed.
|
||||
📝 Commit by {{commit.author}} on `{{commit.branch}}`:
|
||||
```
|
||||
{{commit.message}}
|
||||
```
|
||||
🌐 <{{ build.link }}>
|
||||
{{/success}}
|
||||
when:
|
||||
status:
|
||||
- failure
|
||||
|
||||
volumes:
|
||||
- name: shared
|
||||
temp: {}
|
122
.releaserc
Normal file
122
.releaserc
Normal file
@ -0,0 +1,122 @@
|
||||
branches: ['master','main']
|
||||
ci: true
|
||||
debug: true
|
||||
dryRun: false
|
||||
tagFormat: '${version}'
|
||||
|
||||
# Global plugin options (will be passed to all plugins)
|
||||
preset: 'angular' # angular, conventionalcommits
|
||||
repositoryUrl: 'https://git.sthope.dev/sthope/DockerContainer-RandomPort.git' # your repository url
|
||||
giteaUrl: 'https://git.sthope.dev'
|
||||
|
||||
# Responsible for verifying conditions necessary to proceed with the release:
|
||||
# configuration is correct, authentication token are valid, etc...
|
||||
verifyConditions:
|
||||
- '@semantic-release/changelog'
|
||||
- '@semantic-release/git'
|
||||
- '@saithodev/semantic-release-gitea'
|
||||
|
||||
# Responsible for determining the type of the next release (major, minor or patch).
|
||||
# If multiple plugins with a analyzeCommits step are defined, the release type will be
|
||||
# the highest one among plugins output.
|
||||
# Look details at: https://github.com/semantic-release/commit-analyzer#configuration
|
||||
analyzeCommits:
|
||||
- path: '@semantic-release/commit-analyzer'
|
||||
releaseRules:
|
||||
- breaking: true
|
||||
release: major
|
||||
- type: build # Changes that affect the build system or external dependencies
|
||||
release: patch
|
||||
- type: chore # Other changes that don't modify src or test files
|
||||
release: false
|
||||
- type: ci # Changes to our CI configuration files and scripts
|
||||
release: false
|
||||
- type: docs # Documentation only changes
|
||||
release: false
|
||||
- type: feat # A new feature
|
||||
release: minor
|
||||
- type: fix # A bug fix
|
||||
release: patch
|
||||
- type: perf # A code change that improves performance
|
||||
release: patch
|
||||
- type: refactor # A code change that neither fixes a bug nor adds a feature
|
||||
release: false
|
||||
- type: revert # Reverts a previous commit
|
||||
release: patch
|
||||
- type: style # Changes that do not affect the meaning of the code
|
||||
release: false
|
||||
- type: test # Adding missing tests or correcting existing tests
|
||||
release: false
|
||||
|
||||
# Responsible for generating the content of the release note.
|
||||
# If multiple plugins with a generateNotes step are defined,
|
||||
# the release notes will be the result of the concatenation of each plugin output.
|
||||
generateNotes:
|
||||
- path: '@semantic-release/release-notes-generator'
|
||||
writerOpts:
|
||||
groupBy: 'type'
|
||||
commitGroupsSort: 'title'
|
||||
commitsSort: 'header'
|
||||
linkCompare: true
|
||||
linkReferences: true
|
||||
presetConfig:
|
||||
types: # looks like it only works with 'conventionalcommits' preset
|
||||
- type: 'build'
|
||||
section: '🦊 CI/CD'
|
||||
hidden: false
|
||||
- type: 'chore'
|
||||
section: 'Other'
|
||||
hidden: false
|
||||
- type: 'ci'
|
||||
section: '🦊 CI/CD'
|
||||
hidden: false
|
||||
- type: 'docs'
|
||||
section: '📔 Docs'
|
||||
hidden: false
|
||||
- type: 'example'
|
||||
section: '📝 Examples'
|
||||
hidden: false
|
||||
- type: 'feat'
|
||||
section: '🚀 Features'
|
||||
hidden: false
|
||||
- type: 'fix'
|
||||
section: '🛠 Fixes'
|
||||
hidden: false
|
||||
- type: 'perf'
|
||||
section: '⏩ Performance'
|
||||
- type: 'refactor'
|
||||
section: ':scissors: Refactor'
|
||||
hidden: false
|
||||
- type: 'revert'
|
||||
section: '👀 Reverts'
|
||||
- type: 'style'
|
||||
section: '💈 Style'
|
||||
- type: 'test'
|
||||
section: '🧪 Tests'
|
||||
hidden: false
|
||||
|
||||
# Responsible for preparing the release, for example creating or updating files
|
||||
# such as package.json, CHANGELOG.md, documentation or compiled assets
|
||||
# and pushing a commit.
|
||||
prepare:
|
||||
# - path: '@semantic-release/exec'
|
||||
# # Execute shell command to set package version
|
||||
# cmd: './deployment/version-plaintext-set.sh ${nextRelease.version}'
|
||||
# - path: '@semantic-release/exec'
|
||||
# cmd: './deployment/version-oas-set.sh ${nextRelease.version} openapi.yaml'
|
||||
- path: '@semantic-release/exec'
|
||||
verifyReleaseCmd: "echo ${nextRelease.version} > VERSION.md"
|
||||
- path: '@semantic-release/changelog'
|
||||
# Create or update the changelog file in the local project repository
|
||||
# - path: '@semantic-release/git'
|
||||
# Push a release commit and tag, including configurable files
|
||||
message: 'RELEASE: ${nextRelease.version}'
|
||||
assets: ['CHANGELOG.md']
|
||||
|
||||
# Responsible for publishing the release.
|
||||
publish:
|
||||
- path: '@saithodev/semantic-release-gitea'
|
||||
|
||||
success: false
|
||||
|
||||
fail: false
|
30
CHANGELOG.md
Normal file
30
CHANGELOG.md
Normal file
@ -0,0 +1,30 @@
|
||||
## [0.2.4](https://git.sthope.dev/sthope/DockerContainer-RandomPort/compare/0.2.3...0.2.4) (2021-09-13)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* **):(:** final release ([8daa167](https://git.sthope.dev/sthope/DockerContainer-RandomPort/commit/8daa1677a874f0b3b5d2549e6d218c0bbcbf7217))
|
||||
* **):(:** final release ([0cb2b23](https://git.sthope.dev/sthope/DockerContainer-RandomPort/commit/0cb2b230623b4656d04b98b8c608a6eb095b27c0))
|
||||
* **):(:** final release ([1a38966](https://git.sthope.dev/sthope/DockerContainer-RandomPort/commit/1a389660f0fbb70b6de15529f4db2df1cf84ce59))
|
||||
* **):(:** final release ([97390ab](https://git.sthope.dev/sthope/DockerContainer-RandomPort/commit/97390ab631756171ea3577179f11df6a9219b9dd))
|
||||
* **):(:** final release ([40aad2e](https://git.sthope.dev/sthope/DockerContainer-RandomPort/commit/40aad2e7b28b2a3acbca82e562958034c168d7d3))
|
||||
* **):(:** final release ([95103cd](https://git.sthope.dev/sthope/DockerContainer-RandomPort/commit/95103cd2e8d1cafe991a6c468f14fa0644a339f5))
|
||||
|
||||
|
||||
### Performance Improvements
|
||||
|
||||
* final release ([55e467d](https://git.sthope.dev/sthope/DockerContainer-RandomPort/commit/55e467de52008cf35cc87aea6a3bdb515c59563e))
|
||||
* final release ([0dbc2b5](https://git.sthope.dev/sthope/DockerContainer-RandomPort/commit/0dbc2b514dbece49aa84bf2c37f36d537ad6badf))
|
||||
* final release ([c30b142](https://git.sthope.dev/sthope/DockerContainer-RandomPort/commit/c30b1424bbe13e0ba4e81c6dc55dcebffb1c58b2))
|
||||
* final release ([85d408c](https://git.sthope.dev/sthope/DockerContainer-RandomPort/commit/85d408c243e339a492797e03916ece8ab64eacf5))
|
||||
* final test fucking this ([f9f0360](https://git.sthope.dev/sthope/DockerContainer-RandomPort/commit/f9f036068ca728dae9ab94b14282675f8bbd1490))
|
||||
* test ([0f2d604](https://git.sthope.dev/sthope/DockerContainer-RandomPort/commit/0f2d6042041d85e4ed55ee2f814915ce9ebef4e5))
|
||||
* test ([5ecf4d3](https://git.sthope.dev/sthope/DockerContainer-RandomPort/commit/5ecf4d3e4a9791c05dd85a69910eb124b76fcbb6))
|
||||
* test ([dda71a4](https://git.sthope.dev/sthope/DockerContainer-RandomPort/commit/dda71a42da04db3b5017df7ca36873bf71e0881f))
|
||||
|
||||
## [0.2.1](https://git.sthope.dev/sthope/DockerContainer-RandomPort/compare/v0.2.0...v0.2.1) (2021-09-13)
|
||||
|
||||
|
||||
### Performance Improvements
|
||||
|
||||
* test ([dda71a4](https://git.sthope.dev/sthope/DockerContainer-RandomPort/commit/dda71a42da04db3b5017df7ca36873bf71e0881f))
|
10
Dockerfile
Normal file
10
Dockerfile
Normal file
@ -0,0 +1,10 @@
|
||||
FROM python:3.7-alpine
|
||||
|
||||
LABEL org.opencontainers.image.source="https://git.sthope.dev/sthope/DockerContainer-RandomPort"
|
||||
LABEL Maintainer="Sthope"
|
||||
LABEL Description="Random Port Generator between 10000 and 65535"
|
||||
LABEL version="1.0.0"
|
||||
|
||||
ADD randomport/ /randomport/
|
||||
|
||||
CMD ["python", "/randomport/randomport1.py"]
|
9
LICENSE
Normal file
9
LICENSE
Normal file
@ -0,0 +1,9 @@
|
||||
MIT License
|
||||
|
||||
Copyright (c) 2021 Sthope HopelessAutomations@gmail.com
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
51
README-pt-PT.md
Normal file
51
README-pt-PT.md
Normal file
@ -0,0 +1,51 @@
|
||||
[English](./README.md)
|
||||
[<img src="https://git.sthope.dev/sthope/.gitea/raw/branch/master/avatar-sthope.png" align="right" width="13%" height="13%">](https://www.sthope.dev/)
|
||||
|
||||
# Project_Name · [](../../..) [](LICENSE)
|
||||
|
||||
> 🔥[Sthope](https://www.sthope.dev)
|
||||
|
||||
Uma breve descrição do teu projeto e para que é utilizado.
|
||||
|
||||
## :construction_worker: Instalação / Introdução
|
||||
|
||||
Uma introdução rápida da configuração mínima necessária.
|
||||
|
||||
```shell
|
||||
commands here
|
||||
```
|
||||
|
||||
Aqui deves dizer o que realmente acontece quando executas o código acima.
|
||||
|
||||
## :trophy: Versioning
|
||||
|
||||
Este projecto usa [semantic releases](https://github.com/cenk1cenk2/drone-semantic-release) para controle de versões. For the versions available, see the [Tags](../../../tags).
|
||||
|
||||
## 📥 Configuração
|
||||
|
||||
example_how_it_works
|
||||
|
||||
## :bug: Problemas
|
||||
|
||||
Fique a vontade **para criar uma nova issue** com o respectivo título e descrição na página [issues](../../../issues) do Repositório.
|
||||
Se já encontrou a solução para o problema, [**Eu adoraria fazer o review do pull request**](../../../pulls)!
|
||||
|
||||
## :tada: Contribuir
|
||||
|
||||
Em primeiro lugar, obrigado por estar interessado em ajudar, o seu tempo é sempre apreciado! :100:
|
||||
|
||||
Aqui estão algumas dicas:
|
||||
|
||||
* Verifique a [página de problemas](../../../issues) para problemas já abertos (ou talvez até mesmo fechados) que já podem resolver a sua questão / bug / feature request.
|
||||
* Feature requests são bem-vindos! Forneça alguns detalhes sobre porque isso seria útil para si e para outras pessoas e, se possível, até mesmo alguns print screens!
|
||||
|
||||
Verifique a página [contributing](./CONTRIBUTING.md) para ver os melhores locais para registrar questões, iniciar discussões e começar a contribuir.
|
||||
|
||||
## :closed_book: Licença
|
||||
|
||||
Lançado em 2021 :closed_book: License
|
||||
|
||||
Made with :heart: by [Sthope](https://www.sthope.dev)
|
||||
Para mais informações, consulte a [LICENÇA](LICENSE) file.
|
||||
|
||||
<small>Give a ⭐️ if this project helped you!</small>
|
62
README.md
Normal file
62
README.md
Normal file
@ -0,0 +1,62 @@
|
||||
[Português](./README-pt-PT.md)
|
||||
|
||||
[<img src="https://git.sthope.dev/sthope/.gitea/raw/branch/master/avatar-sthope.png" align="right" width="8%" height="8%">](https://www.sthope.dev/)
|
||||
|
||||
# Random Port Generator (x10) · [](../../..) [](LICENSE)
|
||||
|
||||
> 🔥[Sthope](https://www.sthope.dev)
|
||||
|
||||
Docker container used to generate 10 random ports. Mostly to use on my website as templates.
|
||||
|
||||
## :construction_worker: Installing / Getting started
|
||||
|
||||
Script used to generate ports for my docker (and others..) templates
|
||||
|
||||
```shell
|
||||
docker run -it --rm ghcr.io/sthopeless/randomport:latest
|
||||
```
|
||||
or with sudo
|
||||
```shell
|
||||
sudo docker run -it --rm ghcr.io/sthopeless/randomport:latest
|
||||
```
|
||||
|
||||

|
||||
|
||||
## :trophy: Versioning
|
||||
|
||||
This project uses [semantic releases](https://github.com/cenk1cenk2/drone-semantic-release) for versioning. For the versions available, see the [Tags](../../../tags).
|
||||
|
||||
## 📥 Configuration
|
||||
|
||||
Simply run one of the above commands, it will print out 10 random ports
|
||||
|
||||
## :bug: Issues
|
||||
|
||||
Feel free to **file a new issue** with a respective title and description on the the [repository](../../../issues). If you already found a solution to your problem, [**i would love to review your pull request**](../../../pulls)!
|
||||
|
||||
## :tada: Contributing
|
||||
|
||||
First of all, thank you for being interested in helping out, your time is always appreciated in every way. :100:
|
||||
|
||||
Here's some tips:
|
||||
|
||||
* Check the [issues page](../../../issues) for already opened issues (or maybe even closed ones) that might already address your question/bug/feature request.
|
||||
* Feature requests are welcomed! Provide some details on why it would be helpful for you and others, explain how you're using bull-board and if possible even some screenshots if you are willing to mock something!
|
||||
|
||||
Check out the [contributing](./CONTRIBUTING.md) page to see the best places to file issues, start discussions and begin contributing.
|
||||
|
||||
## Support
|
||||
|
||||
Reach out to the maintainer at one of the following places:
|
||||
|
||||
* [Discord chat](1256)
|
||||
* The email which is located [in Github profile](12345)
|
||||
|
||||
## :closed_book: License
|
||||
|
||||
Released in 2021 :closed_book: License
|
||||
|
||||
Made with :heart: by [Sthope](https://www.sthope.dev)
|
||||
For more information, please refer to the [LICENSE](LICENSE) file.
|
||||
|
||||
<small>Give a ⭐️ if this project helped you!</small>
|
16
randomport/randomport1.py
Normal file
16
randomport/randomport1.py
Normal file
@ -0,0 +1,16 @@
|
||||
from random import *
|
||||
|
||||
def randomPort():
|
||||
x = randint(10000, 65535)
|
||||
print(x)
|
||||
|
||||
randomPort()
|
||||
randomPort()
|
||||
randomPort()
|
||||
randomPort()
|
||||
randomPort()
|
||||
randomPort()
|
||||
randomPort()
|
||||
randomPort()
|
||||
randomPort()
|
||||
randomPort()
|
Loading…
x
Reference in New Issue
Block a user