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.
loki/README.rst

62 lines
983 B
ReStructuredText
Raw Normal View History

2018-01-24 23:46:39 +01:00
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
--------
2018-01-24 23:48:47 +01:00
To update the images and restart run
2018-12-10 09:17:52 +01:00
``WARNING: THIS WILL REMOVE ALL DANGLING DOCKER IMAGES``
2018-01-24 23:46:39 +01:00
::
./update.sh
2018-12-10 09:17:52 +01:00
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.