mirror of
https://github.com/AJaySi/ALwrity.git
synced 2026-04-25 17:05:56 +03:00
[PR #177] [CLOSED] Added Docker, just simple Dockerfile file to make our lives easier #590
Labels
No labels
AI Content Agents
AI Content Strategy
AI Content planning
AI Marketing Tools
AI SEO
AI personalization
AI writer
ALwrity Copi-lot
Alwrity web search
Anthropic
DeepSeek
Gemini AI
Integration
LLM
OnBoarding
OnBoarding
RAG knowledgebase Memory
bug
documentation
enhancement
good first issue
help wanted
invalid
openai
pull-request
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/ALwrity#590
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
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/AJaySi/ALwrity/pull/177
Author: @Zetsu4i
Created: 4/20/2025
Status: ❌ Closed
Base:
main← Head:main📝 Commits (1)
2b05f0eAdd Dockerfile file📊 Changes
1 file changed (+35 additions, -0 deletions)
View changed files
➕
Dockerfile(+35 -0)📄 Description
New Easy Instructions for Building and Running with Docker
These instructions assume you have Docker installed on your machine.
Save the Dockerfile:(if this PR is merged u dont have too, u just run
git clone)AI-Writerproject on your local machine.Dockerfile(no extension) in this root directory.Build the Docker Image:
AI-Writerproject (where yourDockerfileis located).docker build: The command to build a Docker image.-t alwrity: Tags the image with the namealwrity(you can choose a different name)..: Specifies the build context, meaning Docker will look for the Dockerfile and necessary files in the current directory.Run the Docker Container:
alwrityimage. You will need to replace the placeholder values with your actual API keys and add environment variables for all the services you intend to use.docker run: Command to run a container.-d: Runs the container in detached mode (in the background).-p 8501:8501: Maps port 8501 on your host machine to port 8501 inside the container. This is how you access the Streamlit UI.-e ENV_VAR_NAME='your_key': Sets environment variables inside the container. You MUST replace'your_...'with your actual API keys. Add one-eflag for each API key required by the project.--name alwrity_app: Assigns a name to the container for easier management (optional).alwrity: The name of the image to run.Access the Application:
http://localhost:8501.Finally
Enjoy & Good luck!
🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.