mirror of
https://github.com/learnhouse/docs.git
synced 2026-02-18 00:07:39 +01:00
44 lines
791 B
Plaintext
44 lines
791 B
Plaintext
import { Callout } from 'nextra-theme-docs'
|
|
import { Steps } from 'nextra-theme-docs'
|
|
|
|
# Docker and Kubernetes
|
|
|
|
<Callout type="warning" >
|
|
LearnHouse is still in **alpha** and is not yet ready for production use.
|
|
</Callout>
|
|
|
|
## Docker
|
|
|
|
<Steps>
|
|
|
|
### Install Docker
|
|
|
|
To install Docker, follow the instructions for your operating system on the [Docker website](https://docs.docker.com/get-docker/).
|
|
|
|
### Download the LearnHouse repository
|
|
|
|
```bash copy
|
|
git clone https://github.com/learnhouse/learnhouse
|
|
```
|
|
|
|
#### Go to the directory
|
|
|
|
```shell copy
|
|
cd learnhouse
|
|
```
|
|
|
|
### Build and run the backend and frontend docker images
|
|
|
|
```shell copy
|
|
docker-compose up -d
|
|
```
|
|
|
|
</Steps>
|
|
|
|
## Kubernetes
|
|
|
|
<Callout type="info" >
|
|
We're still working on a kubernetes deployment guide.
|
|
</Callout>
|
|
|