mirror of
https://github.com/Steffo99/sophon.git
synced 2024-12-22 06:44:21 +00:00
🗒 Add install steps (closes #58)
This commit is contained in:
parent
dd2d3faf06
commit
b6619f4c42
1 changed files with 43 additions and 0 deletions
43
README.md
43
README.md
|
@ -9,6 +9,49 @@ The goal of this project is developing a platform that universities can use to *
|
||||||
papers_.
|
papers_.
|
||||||
|
|
||||||
|
|
||||||
|
## Installation
|
||||||
|
|
||||||
|
### Requirements
|
||||||
|
|
||||||
|
- Internet connection
|
||||||
|
- Any Linux server
|
||||||
|
- [Docker][what-is-docker]
|
||||||
|
- [Docker Compose][what-is-compose]
|
||||||
|
|
||||||
|
[what-is-docker]: https://www.docker.com/
|
||||||
|
|
||||||
|
[what-is-docker-compose]: https://docs.docker.com/compose/
|
||||||
|
|
||||||
|
|
||||||
|
### Steps
|
||||||
|
|
||||||
|
1. Create a new directory named `sophon` on your machine and enter it:
|
||||||
|
```console
|
||||||
|
# mkdir sophon
|
||||||
|
# cd sophon
|
||||||
|
```
|
||||||
|
|
||||||
|
2. Pull the `ghcr.io/steffo99/sophon-jupyter` Docker image:
|
||||||
|
```console
|
||||||
|
# docker pull ghcr.io/steffo99/sophon-jupyter
|
||||||
|
```
|
||||||
|
|
||||||
|
3. Download the `docker-compose.yml` file from this repository:
|
||||||
|
```console
|
||||||
|
# wget "https://raw.githubusercontent.com/Steffo99/sophon/main/docker-compose.yml"
|
||||||
|
```
|
||||||
|
|
||||||
|
4. Configure the `docker-compose.yml` file following the instructions written in the comments:
|
||||||
|
```console
|
||||||
|
# vim docker-compose.yml
|
||||||
|
```
|
||||||
|
|
||||||
|
5. Start the Docker containers:
|
||||||
|
```console
|
||||||
|
# docker compose up -d
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
## Structure
|
## Structure
|
||||||
|
|
||||||
The project consists of four parts:
|
The project consists of four parts:
|
||||||
|
|
Loading…
Reference in a new issue