diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2018-11-04 17:22:44 -0800 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2018-11-04 17:24:06 -0800 |
commit | 423c55ace7b00b911c7b8a6e53298bb77dff1ce9 (patch) | |
tree | d2cc40ac68c2dd670bd18eb9ef5a9087da27e256 /extra/docker/README.md | |
parent | d70abdd82955feba4eecdda24ff6d95f703e0598 (diff) | |
download | fatcat-423c55ace7b00b911c7b8a6e53298bb77dff1ce9.tar.gz fatcat-423c55ace7b00b911c7b8a6e53298bb77dff1ce9.zip |
first draft docker-compose file and README
Diffstat (limited to 'extra/docker/README.md')
-rw-r--r-- | extra/docker/README.md | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/extra/docker/README.md b/extra/docker/README.md new file mode 100644 index 00000000..06ff06e1 --- /dev/null +++ b/extra/docker/README.md @@ -0,0 +1,21 @@ + +This docker compose file can be used for local development without needing to +install some large dependencies. Currently it isn't *required* for core +development (the fatcat API server and most of the web interface), and also +doesn't bundle *all* dependencies. + +This requires + +To start docker compose (kafka, zookeeper, elasticsearch) with logging in the +current terminal: + + docker-compose up + +This mode is recommended for most development because the services consume a +lot of RAM and you don't want them sticking around by accident. You can run the +services in the background by adding the `-d` flag. + +TODO: +- postgres +- fatcatd (rust) +- kibana |