https://github.com/3scale/searchd
Simple searchd container for 3scale
https://github.com/3scale/searchd
Last synced: 5 months ago
JSON representation
Simple searchd container for 3scale
- Host: GitHub
- URL: https://github.com/3scale/searchd
- Owner: 3scale
- License: apache-2.0
- Created: 2023-01-31T20:47:53.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2025-11-24T12:05:19.000Z (7 months ago)
- Last Synced: 2025-11-28T01:24:33.075Z (7 months ago)
- Language: Dockerfile
- Size: 93.8 KB
- Stars: 0
- Watchers: 4
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Searchd container image based on Red Hat Linux
[](https://github.com/3scale/searchd/actions/workflows/container-image-buildah.yml)
[](https://github.com/3scale/searchd/actions/workflows/lint.yml)
## Build image
```
podman build --squash -t 3scale-searchd .
```
Optionally supply `--build-arg PORTA_IMAGE=value` to use something different than the default `quay.io/3scale/porta:nightly`.
## Lint Containerfile
```
hadolint Containerfile
```
## Run locally
To simulate OpenShift environment run it as non-root like this:
```
podman run --rm -ti -u 14:0 -p 9306:9306 quay.io/3scale/searchd:nightly
```
Then you can connect with `mysql` client:
```
mysql -h 127.0.0.1 -P 9306
SELECT * FROM account limit 1;
```
## Issues
Please report any issues to https://issues.redhat.com/browse/THREESCALE using component `system`.