Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: hoytech/strfry
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: master
Choose a base ref
...
head repository: dockur/strfry
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
Able to merge. These branches can be automatically merged.
Loading
22 changes: 22 additions & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
.dockerignore
.github
.gitignore
.gitlab-ci.yml
.gitmodules
Dockerfile
Dockerfile.archive
ubuntu.Dockerfile
compose.yml
compose.yaml
docker-compose.yml
docker-compose.yaml
sample-docker-compose.yml
renovate.json

*.md
docs
test
CHANGES
LICENSE
TODO

16 changes: 16 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
version: 2
updates:
- package-ecosystem: docker
directory: /
schedule:
interval: weekly
open-pull-requests-limit: 0
- package-ecosystem: github-actions
directory: /
schedule:
interval: weekly
- package-ecosystem: cargo
directory: /
schedule:
interval: weekly
open-pull-requests-limit: 0
135 changes: 135 additions & 0 deletions .github/logo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
8 changes: 8 additions & 0 deletions .github/pull.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
version: "1"
rules:
- base: master
upstream: hoytech:master
mergeMethod: merge # default value if this file does not exist is `hardreset`, effectively overwriting any downstream changes!
mergeUnstable: false # Optional, merge pull request even when the mergeable_state is not clean. Default: false
label: ":arrow_heading_down: pull" # Optional
conflictLabel: "merge-conflict" # Optional, on merge conflict assign a custom label, Default: merge-conflict
52 changes: 52 additions & 0 deletions .github/readme.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
<h1 align="center">strfry-docker<br />
<div align="center">
<a href="https://github.com/dockur/strfry"><img src="https://raw.githubusercontent.com/dockur/strfry/master/.github/logo.svg" title="Logo" style="max-width:100%;" width="128" /></a>
</div>
<div align="center">

[![Build]][build_url]
[![Version]][tag_url]
[![Size]][tag_url]
[![Package]][pkg_url]
[![Pulls]][hub_url]

</div></h1>

Docker image of [strfry](https://github.com/hoytech/strfry), a relay for the [nostr](https://github.com/nostr-protocol/nostr) protocol.

## Usage 🐳

Via Docker Compose:

```yaml
services:
strfry:
image: dockurr/strfry
container_name: strfry
ports:
- 7777:7777
volumes:
- ./strfry-db:/app/strfry-db
- ./strfry.conf:/etc/strfry.conf
restart: always
```
Via Docker CLI:
```bash
docker run -it --rm -p 7777:7777 -v " ./strfry.conf:/etc/strfry.conf" dockurr/strfry
```

## Stars 🌟
[![Stars](https://starchart.cc/dockur/strfry.svg?variant=adaptive)](https://starchart.cc/dockur/strfry)

[build_url]: https://github.com/dockur/strfry/
[hub_url]: https://hub.docker.com/r/dockurr/strfry/
[tag_url]: https://hub.docker.com/r/dockurr/strfry/tags
[pkg_url]: https://github.com/dockur/strfry/pkgs/container/strfry

[Build]: https://github.com/dockur/strfry/actions/workflows/build.yml/badge.svg
[Size]: https://img.shields.io/docker/image-size/dockurr/strfry/latest?color=066da5&label=size
[Pulls]: https://img.shields.io/docker/pulls/dockurr/strfry.svg?style=flat&label=pulls&logo=docker
[Version]: https://img.shields.io/docker/v/dockurr/strfry/latest?arch=amd64&sort=semver&color=066da5
[Package]: https://img.shields.io/badge/dynamic/json?url=https%3A%2F%2Fipitio.github.io%2Fbackage%2Fdockur%2Fstrfry%2Fstrfry.json&query=%24.downloads&logo=github&style=flat&color=066da5&label=pulls
11 changes: 11 additions & 0 deletions .github/renovate.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["config:recommended", ":disableDependencyDashboard"],
"forkProcessing": "enabled",
"dockerfile": {
"enabled": false
},
"docker-compose": {
"enabled": false
}
}
Loading