mirror of
https://github.com/open-webui/openapi-servers.git
synced 2026-08-24 12:02:55 -04:00
[PR #16] [MERGED] 🚀 Add Docker Support to Example Servers #3
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
📋 Pull Request Information
Original PR: https://github.com/open-webui/openapi-servers/pull/16
Author: @svijaykoushik
Created: 4/4/2025
Status: ✅ Merged
Merged: 4/5/2025
Merged by: @tjbck
Base:
main← Head:main📝 Commits (2)
d2239bbfeat: docker supporte80caf7feat: unified compose file📊 Changes
11 files changed (+300 additions, -0 deletions)
View changed files
📝
README.md(+7 -0)➕
compose.yaml(+17 -0)➕
servers/filesystem/.dockerignore(+34 -0)➕
servers/filesystem/Dockerfile(+51 -0)➕
servers/filesystem/compose.yaml(+7 -0)➕
servers/memory/.dockerignore(+34 -0)➕
servers/memory/Dockerfile(+51 -0)➕
servers/memory/compose.yaml(+7 -0)➕
servers/time/.dockerignore(+34 -0)➕
servers/time/Dockerfile(+51 -0)➕
servers/time/compose.yaml(+7 -0)📄 Description
This PR adds Docker support for the three example servers —
filesystem,memory, andtime— enabling them to run in containerized environments. It includes both individual Docker configurations and a unified setup for orchestrating all three servers together.What's Included
Dockerfilefor each example server:filesystem,memory, andtime.dockerignorefor clean and efficient Docker buildscompose.yamlfiles for running each server independentlycompose.yamlat the project root to run all three servers togetherWhy It Matters
How to Use
To run all three servers together:
From the project root, run:
To run a specific server:
Navigate to the desired server’s directory (e.g.,
servers/filesystem/) and run:Notes
🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.