https://github.com/celrenheit/docker-foundationdb
Docker images for FoundationDB supporting linux/amd64 and linux/arm64
https://github.com/celrenheit/docker-foundationdb
Last synced: 9 months ago
JSON representation
Docker images for FoundationDB supporting linux/amd64 and linux/arm64
- Host: GitHub
- URL: https://github.com/celrenheit/docker-foundationdb
- Owner: celrenheit
- License: mit
- Created: 2024-09-15T21:26:59.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-09-15T21:50:18.000Z (almost 2 years ago)
- Last Synced: 2024-09-16T00:25:52.161Z (almost 2 years ago)
- Language: Shell
- Size: 3.91 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Docker FoundationDB
Docker images for FoundationDB supporting linux/amd64 and linux/arm64.
Useful for development and testing.
## Usage
### Docker
```bash
docker run -it -p 4500:4500 celrenheit/foundationdb:7.3.46
```
### Docker Compose
```yaml
version: '3.7'
services:
foundationdb:
image: celrenheit/foundationdb:7.3.46
ports:
- 4500:4500
```
You can also set knobs using environment variables:
```yaml
version: '3.7'
services:
foundationdb:
image: celrenheit/foundationdb:7.3.46
ports:
- 4500:4500
environment:
- FDB_KNOB_min_available_space_ratio=0.001
```
## License
This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.