diff options
author | Ruediger Küpper <ruediger@kuepper.nrw> | 2020-05-12 17:31:10 +0200 |
---|---|---|
committer | Ruediger Küpper <ruediger@kuepper.nrw> | 2020-05-12 17:31:10 +0200 |
commit | 3745c6710ddd1d5504ea4882d07d97e2ce55d499 (patch) | |
tree | d3eff5675cf1ec1230059b2cbb6cd3d42a135ac6 /README.md | |
parent | 8558205de4c9bd46aa7b4a61db7bdd1fa2f91240 (diff) | |
download | feed2imap-go-3745c6710ddd1d5504ea4882d07d97e2ce55d499.tar.gz feed2imap-go-3745c6710ddd1d5504ea4882d07d97e2ce55d499.tar.bz2 feed2imap-go-3745c6710ddd1d5504ea4882d07d97e2ce55d499.zip |
add docker stuff
Diffstat (limited to '')
-rw-r--r-- | README.md | 22 |
1 files changed, 22 insertions, 0 deletions
@@ -90,6 +90,28 @@ Note that this is not recommended, because it is a) not obvious which version yo and b) the update process is not clear, especially regarding the dependencies. +### Run in docker + +Build docker image: + +````bash +docker build -t feed2imap-go . +```` + +Run docker-command: + +````bash +docker volume create docker_feeddata +docker container run -v feeddata:/app/data feed2imap-go +```` + +Or run with docker-compose: + +````bash +docker-compose up + +Next Todo: Run scheduled kubernetes job in k8s cluster + [i6]: https://github.com/Necoro/feed2imap-go/issues/6 [i4]: https://github.com/Necoro/feed2imap-go/issues/4 [i9]: https://github.com/Necoro/feed2imap-go/issues/9 |