Skip to content

khulnasoft/dockyard-dev

Repository files navigation

Dockyard Alpha

For alpha testing, you can start dockyard with the following command:

docker run -d \
    --name adockyard \
    -p 3000:3000 \
    -v /var/run/docker.sock:/var/run/docker.sock \
    ghcr.io/khulnasoft/dockyard-dev:main

if you'd like persistent configs you can run this instead:

docker run -d \
    --name adockyard \ #or whatever name you want
    -p 3000:3000 \
    -v /var/run/docker.sock:/var/run/docker.sock \
    -v /path/to/config/dir/or/volume/name:/config \ # for dockyard config directory
    -v /path/to/data/dir/or/volume/name:/data \ # for dockyard project/data directory
    ghcr.io/khulnasoft/dockyard-dev:main

to pull a newer image run the following:

docker image pull ghcr.io/khulnasoft/dockyard-dev:main

you can remove dockyard with the following command:

docker rm -f adockyard # or whatever name you set above

Look at the Nuxt 3 documentation to learn more.

Setup

Make sure to install the dependencies:

# npm
npm install

# pnpm
pnpm install

# yarn
yarn install

# bun
bun install

Development Server

Start the development server on http://localhost:3000:

# npm
npm run dev

# pnpm
pnpm run dev

# yarn
yarn dev

# bun
bun run dev

Production

Build the application for production:

# npm
npm run build

# pnpm
pnpm run build

# yarn
yarn build

# bun
bun run build

Locally preview production build:

# npm
npm run preview

# pnpm
pnpm run preview

# yarn
yarn preview

# bun
bun run preview

Check out the deployment documentation for more information.

About

No description or website provided.

Topics

Resources

Code of conduct

Security policy

Stars

Watchers

Forks

Releases

No releases published

Packages