iceshrimp-legacy/docker-README.md

48 lines
2.2 KiB
Markdown
Raw Normal View History

2022-12-16 23:34:27 +01:00
# 🐳 Running a Calckey instance with Docker
## Pre-built docker container
[thatonecalculator/calckey](https://hub.docker.com/r/thatonecalculator/calckey)
2022-12-16 23:34:27 +01:00
## `docker-compose`
There is a `docker-compose.yml` in the root of the project that you can use to build the container from source
- .config/docker.env (**db config settings**)
- .config/default.yml (**calckey instance settings**)
2022-12-16 23:34:27 +01:00
## Configuring
Rename the files:
`cp .config/default_example.yml .config/default.yml`
`cp .config/example.env .config/docker.env`
then edit them according to your environment.
You can configure `docker.env` with anything you like, but you will have to pay attention to the `default.yml` file:
- `url` should be set to the URL you will be hosting the web interface for the instance at.
2022-12-13 05:22:39 +01:00
- `host`, `db`, `user`, `pass` will have to be configured in the `PostgreSQL configuration` section - `host` is the name of the postgres container (eg: *calckey_db_1*), and the others should match your `docker.env`.
- `host`will need to be configured in the *Redis configuration* section - it is the name of the redis container (eg: *calckey_redis_1*)
2022-12-13 05:22:39 +01:00
Everything else can be left as-is.
## Running docker-compose
2022-12-16 23:34:27 +01:00
2022-12-13 05:22:39 +01:00
The [prebuilt container for calckey](https://hub.docker.com/r/thatonecalculator/calckey) is fairly large, and may take a few minutes to download and extract using docker.
2022-12-13 05:22:39 +01:00
Copy `docker-compose.yml` and the `config/` to a directory, then run the **docker-compose** command:
`docker-compose up -d`.
2022-12-13 05:22:39 +01:00
NOTE: This will take some time to come fully online, even after download and extracting the container images, and it may emit some error messages before completing successfully. Specifically, the `db` container needs to initialize and so isn't available to the `web` container right away. Only once the `db` container comes online does the `web` container start building and initializing the calckey tables.
Once the instance is up you can use a web browser to access the web interface at `http://serverip:3000` (where `serverip` is the IP of the server you are running the calckey instance on).
2022-12-16 23:34:27 +01:00
## Docker for development
```sh
cd dev/
docker-compose build
docker-compose run --rm web pnpm run init
2022-12-16 23:34:27 +01:00
docker-compose up -d
```