feature: 🐋 added docker image

This commit is contained in:
Sammwy 2025-01-26 19:30:49 -03:00
parent 185c01aa6d
commit 2f97120550
No known key found for this signature in database
GPG key ID: E6B924CEF399DE44
3 changed files with 38 additions and 0 deletions

23
Dockerfile Normal file
View file

@ -0,0 +1,23 @@
# Use the official Node.js v20 image as a base
FROM node:20
# Set the working directory
WORKDIR /app
# Copy package.json
COPY package*.json ./
# Install dependencies using bun
RUN npm install
# Copy the rest of the source code
COPY . .
# Build the project and output to the ./dist directory
RUN npm run build
# Expose the port the app runs on (adjust if necessary)
EXPOSE 3000
# Run the application
CMD ["npm", "run", "start"]

View file

@ -6,6 +6,7 @@ A fun and visually appealing stress testing server with a **Miku-themed** fronte
## Features 🎉
- 🐳 **Docker Ready**: MMB is ready to be built and run in a Docker container.
- 🌐 **Real-time Attack Visualization**: View your attacks progress and statistics in real-time as it runs. 🔥
- 🎶 **Miku-themed UI**: A cute and vibrant design with Mikus vibe to make the process more fun. Includes a banger song to keep you pumped! 🎧
- 🧑‍💻 **Configurable Attack Parameters**: Easily set the attack method, packet size, duration, and packet delay via the frontend interface.

14
docker-compose.yml Normal file
View file

@ -0,0 +1,14 @@
version: "3.8"
services:
app:
build:
context: .
dockerfile: Dockerfile
ports:
- "3000:3000"
volumes:
- .:/app
environment:
- NODE_ENV=development
command: npm run start