This project can be deployed with Docker & docker-compose.
1. First, Edit the docker-compose.yml
services:
draw-docs:
container_name: draw-docs
build:
dockerfile: Dockerfile
restart: always
ports:
# (Optional) Change here if you want to change the port number
# DO NOT CHANGE THE LAST PORT NUMBER because it is used inside of docker container
# Example: 8080:3000
- 3000:3000
# (Required) Change here according to your docker network configuration
# This lines can be removed if you are not using static ip
networks:
default:
ipv4_address: 172.22.0.6
# (Required) Change here according to your docker network configuration
networks:
default:
name: nginx_network
external: true
docker-compose up -d --build
git clone https://github.com/kmu-draw/docs.git
cd docs
pnpm install
pnpm start:dev
- Default location of development server: http://localhost:20232
- Jaewook Ahn
- Seungjin Han
This project is licensed under the MIT License.