2019-08-15 02:32:32 +02:00
|
|
|
# Philomena
|
|
|
|
|
2019-08-18 00:06:11 +02:00
|
|
|
Next generation imageboard.
|
|
|
|
|
2019-12-07 18:17:12 +01:00
|
|
|
![](https://derpicdn.net/img/2019/8/23/2125268/full.svg)
|
2019-11-19 04:58:21 +01:00
|
|
|
|
2019-12-07 18:17:12 +01:00
|
|
|
## Getting started
|
|
|
|
On systems with `docker` and `docker-compose` installed, the process should be as simple as:
|
2019-08-15 02:32:32 +02:00
|
|
|
|
2019-12-07 18:17:12 +01:00
|
|
|
```
|
|
|
|
docker-compose build
|
|
|
|
docker-compose up
|
|
|
|
```
|
2019-08-15 02:32:32 +02:00
|
|
|
|
2019-12-07 18:17:12 +01:00
|
|
|
If you use `podman` and `podman-compose` instead, the process for constructing a rootless container is nearly identical:
|
2019-08-15 02:32:32 +02:00
|
|
|
|
2019-12-07 18:17:12 +01:00
|
|
|
```
|
|
|
|
podman-compose build
|
|
|
|
podman-compose up
|
|
|
|
```
|
2019-08-15 02:32:32 +02:00
|
|
|
|
2019-12-07 18:17:12 +01:00
|
|
|
If you run into an Elasticsearch bootstrap error, you may need to increase your `max_map_count` on the host as follows:
|
|
|
|
```
|
|
|
|
sudo sysctl -w vm.max_map_count=262144
|
|
|
|
```
|
2019-08-15 02:32:32 +02:00
|
|
|
|
2019-12-07 18:17:12 +01:00
|
|
|
If you have SELinux enforcing, you should run the following in the application directory on the host before proceeding:
|
|
|
|
```
|
|
|
|
chcon -Rt svirt_sandbox_file_t .
|
|
|
|
```
|
|
|
|
|
|
|
|
This allows Docker or Podman to bind mount the application directory into the containers.
|
|
|
|
|
|
|
|
## Deployment
|
|
|
|
You need a key installed on the server you target, and the git remote installed in your ssh configuration.
|
|
|
|
|
|
|
|
git remote add production philomena@<serverip>:philomena/
|
|
|
|
|
|
|
|
The general syntax is:
|
|
|
|
|
|
|
|
git push production master
|
|
|
|
|
|
|
|
And if everything goes wrong:
|
|
|
|
|
|
|
|
git reset HEAD^ --hard
|
|
|
|
git push -f production master
|
|
|
|
|
|
|
|
(to be repeated until it works again)
|