mirror of
https://github.com/fmhy/edit.git
synced 2025-07-29 23:32:17 +10:00
feat: docker deployments
This commit is contained in:
parent
b58ec2778f
commit
4e83c31e9f
4 changed files with 61 additions and 1 deletions
5
.dockerignore
Normal file
5
.dockerignore
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
node_modules
|
||||||
|
.git
|
||||||
|
.gitignore
|
||||||
|
dist
|
||||||
|
cache
|
21
Dockerfile
Normal file
21
Dockerfile
Normal file
|
@ -0,0 +1,21 @@
|
||||||
|
FROM node:21-slim AS base
|
||||||
|
ENV PNPM_HOME="/pnpm"
|
||||||
|
ENV PATH="$PNPM_HOME:$PATH"
|
||||||
|
RUN corepack enable
|
||||||
|
COPY . /app
|
||||||
|
WORKDIR /app
|
||||||
|
|
||||||
|
FROM base AS prod-deps
|
||||||
|
RUN --mount=type=cache,id=pnpm,target=/pnpm/store pnpm install --frozen-lockfile
|
||||||
|
|
||||||
|
FROM base AS build
|
||||||
|
RUN --mount=type=cache,id=pnpm,target=/pnpm/store pnpm install --frozen-lockfile
|
||||||
|
RUN pnpm run docs:build
|
||||||
|
|
||||||
|
FROM base
|
||||||
|
COPY --from=prod-deps /app/node_modules /app/node_modules
|
||||||
|
COPY --from=build /app/docs/.vitepress/dist /app/docs/.vitepress/dist
|
||||||
|
|
||||||
|
EXPOSE 4173
|
||||||
|
|
||||||
|
CMD ["pnpm", "docs:preview"]
|
15
docker-compose.yaml
Normal file
15
docker-compose.yaml
Normal file
|
@ -0,0 +1,15 @@
|
||||||
|
services:
|
||||||
|
docs:
|
||||||
|
networks: [fmhy]
|
||||||
|
build:
|
||||||
|
context: .
|
||||||
|
dockerfile: Dockerfile
|
||||||
|
image: fmhy-docs
|
||||||
|
container_name: docs
|
||||||
|
restart: unless-stopped
|
||||||
|
ports:
|
||||||
|
- '4173:4173'
|
||||||
|
|
||||||
|
|
||||||
|
networks:
|
||||||
|
fmhy:
|
|
@ -13,6 +13,25 @@ Do note that you **must** differentiate your instance from the official site (fm
|
||||||
|
|
||||||
#### Prerequisites
|
#### Prerequisites
|
||||||
|
|
||||||
|
### Docker (Experimental)
|
||||||
|
|
||||||
|
You will need to install Docker and Docker Compose run your own instance of FMHY locally.
|
||||||
|
|
||||||
|
- [Docker](https://docs.docker.com/get-docker/)
|
||||||
|
- [Docker Compose](https://docs.docker.com/compose/install/)
|
||||||
|
|
||||||
|
After installing Docker and Docker Compose, run the following commands:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
git clone https://github.com/fmhy/edit.git
|
||||||
|
cd edit
|
||||||
|
sudo docker compose up --build
|
||||||
|
```
|
||||||
|
|
||||||
|
It should take a few minutes to build the image and start the container, running at port 4173.
|
||||||
|
|
||||||
|
### Manually
|
||||||
|
|
||||||
- [Git](https://git-scm.com/downloads)
|
- [Git](https://git-scm.com/downloads)
|
||||||
- [Node.js](https://nodejs.org/en/download/) - Use the latest available LTS, doesn't matter much
|
- [Node.js](https://nodejs.org/en/download/) - Use the latest available LTS, doesn't matter much
|
||||||
- [pnpm 9.12.2 or newer](https://pnpm.io/installation)
|
- [pnpm 9.12.2 or newer](https://pnpm.io/installation)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue