Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

publish website [ID-12] #13

Merged
merged 2 commits into from
Jul 8, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 3 additions & 12 deletions docs/about.markdown
Original file line number Diff line number Diff line change
@@ -1,18 +1,9 @@
---
layout: page
layout: default
title: About
permalink: /about/
---

This is the base Jekyll theme. You can find out more info about customizing your Jekyll theme, as well as basic Jekyll usage documentation at [jekyllrb.com](https://jekyllrb.com/)
The projects under the [ianseo.arqueria.pro](https://ianseo.arqueria.pro) umbrella are intended to
ease the install and run of archery software [Ianseo](https://ianseo.net).

You can find the source code for Minima at GitHub:
[jekyll][jekyll-organization] /
[minima](https://github.com/jekyll/minima)

You can find the source code for Jekyll at GitHub:
[jekyll][jekyll-organization] /
[jekyll](https://github.com/jekyll/jekyll)


[jekyll-organization]: https://github.com/jekyll
Binary file added docs/assets/images/arqueria-de_dark_1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/assets/images/arqueria-de_dark_2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/assets/images/arqueria-de_light_1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/assets/images/arqueria-de_light_2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
35 changes: 35 additions & 0 deletions docs/docker.markdown
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
---
# Feel free to add content and custom Front Matter to this file.
# To modify the layout, see https://jekyllrb.com/docs/themes/#overriding-theme-defaults

layout: default
---

Get I@nseo running in Ubuntu with Docker in one-liner!

[![asciicast](https://asciinema.org/a/477827.svg)](https://asciinema.org/a/477827)


Install docker

```
sudo apt install docker.io -y
```

Launch database

```
docker run -d --name ianseodb -e MARIADB_USER=ianseo \
-e MARIADB_DATABASE=ianseo -e MARIADB_PASSWORD=ianseo \
-e MARIADB_ROOT_PASSWORD=ianseo mariadb:10
```

Launch ianseo

```
docker run -d --name ianseo --link ianseodb:mysql \
-p 8080:80 arqueria/ianseo

```

Browse to [http://localhost:8080](http://localhost:8080)
29 changes: 5 additions & 24 deletions docs/index.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -5,31 +5,12 @@
layout: default
---

Get I@nseo running in Ubuntu with Docker in one-liner!
Get I@nseo running easily across platforms, Windows, MacOS, and Linux.

[![asciicast](https://asciinema.org/a/477827.svg)](https://asciinema.org/a/477827)
![Arqueria Desktop Extension](assets/images/arqueria-de_light_1.png)

You still can choose to use the docker image which is the base for the
Arqueria Desktop Extension.

Install docker
I@nseo in docker is [here](docker)

```
sudo apt install docker.io -y
```

Launch database

```
docker run -d --name ianseodb -e MARIADB_USER=ianseo \
-e MARIADB_DATABASE=ianseo -e MARIADB_PASSWORD=ianseo \
-e MARIADB_ROOT_PASSWORD=ianseo mariadb:10
```

Launch ianseo

```
docker run -d --name ianseo --link ianseodb:mysql \
-p 8080:80 arqueria/ianseo

```

Browse to [http://localhost:8080](http://localhost:8080)