Dockerfiles for Loki
This repository has been archived on 2023-02-05. You can view files and clone it, but cannot push or open issues or pull requests.
Go to file
Wojciech Kozlowski c3798505a4 Fix duplicity install 2023-02-05 14:29:56 +01:00
ansible Fix duplicity install 2023-02-05 14:29:56 +01:00
html Add new html build 2019-07-28 18:52:37 +02:00
nextcloud Careful with nextcloud and gitlab versions 2022-07-24 18:44:11 +02:00
proxy Add pi.wojciechkozlowski.eu config 2020-04-06 18:58:21 +01:00
.gitignore Add a gitignore 2019-12-15 11:27:24 +00:00
.gitlab-ci.yml Remove wiki 2019-12-15 10:18:10 +01:00
.gitmodules Update static website container 2019-07-28 14:34:37 +02:00
LICENSE Update LICENSE 2018-12-10 09:54:04 +00:00
Makefile Remove wiki 2019-12-15 10:18:10 +01:00
README.rst Update README 2018-12-10 08:17:52 +00:00
b2-backup.sh Fix issue with bash interpreting numbers as octals 2020-11-15 21:51:24 +01:00
backup.sh Fix test for using colours in stdout 2019-12-16 08:31:21 +01:00
docker-compose.yml Make sure containers from registry are pulled 2022-07-24 18:44:11 +02:00
registry-cleaner.sh Fix test for using colours in stdout 2019-12-16 08:31:21 +01:00
update.sh Use systemctl in update script 2019-11-13 11:02:59 +08:00

README.rst

Loki
====

Docker files for my server, Loki.

Installation
------------

The following command will install the service file, reload systemd, and enable
the service

::

   make install

Uninstall with

::

   make uninstall

Usage
-----

To start the service run

::

   service loki-server start

To stop run

::

   service loki-server stop

To restart

::

   service loki-server restart

Note that ``docker-compose`` might have issues with HTTP timeout so you may
have to increase the ``COMPOSE_HTTP_TIMEOUT`` environment variable. ``300``
should be enough.

Updating
--------

To update the images and restart run

``WARNING: THIS WILL REMOVE ALL DANGLING DOCKER IMAGES``

::

   ./update.sh

A dangling image is one that does not have a tag, i.e., it is listed with a
``<none>`` tag. The update pulls new versions of the images being used so all
old images will now be left untagged and thus removed. However, if you have
other untagged images, this will remove them as well.