diff options
| author | Pitu <[email protected]> | 2021-02-06 00:25:43 +0900 |
|---|---|---|
| committer | Pitu <[email protected]> | 2021-02-06 00:25:43 +0900 |
| commit | bbce774d6cfbc0462750f55be3c844eaf2af8855 (patch) | |
| tree | 2393fc2262286856242c90868384f74dd679bb2a /docs/docker.md | |
| parent | chore: update logo to be square for embeds (diff) | |
| download | host.fuwn.me-bbce774d6cfbc0462750f55be3c844eaf2af8855.tar.xz host.fuwn.me-bbce774d6cfbc0462750f55be3c844eaf2af8855.zip | |
chore: add docker docs
Diffstat (limited to 'docs/docker.md')
| -rw-r--r-- | docs/docker.md | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/docs/docker.md b/docs/docker.md new file mode 100644 index 0000000..f3fb23c --- /dev/null +++ b/docs/docker.md @@ -0,0 +1,13 @@ +### Using Docker + +If you want to avoid all the hassle of installing the dependencies, configuring nginx and etc you can simply use our docker image which makes things way faster. +First make sure you have docker and docker composer installed, on Linux this would be `sudo apt install docker-ce`. +After that edit the config file called `docker-compose.config.example.yml` with the values you want. Those that are left commented will use the default values. +Once you are done editing that file remove the `example` from the name so it ends up being `docker-compose.config.yml` and run the following commands: + +- `cd docker` +- `./chibisafe prod pull` +- `./chibisafe prod build` +- `./chibisafe prod up -d` + +Congrats, your chibisafe instance is now running. |