diff options
author | terminaldweller <thabogre@gmail.com> | 2021-11-11 17:58:22 +0000 |
---|---|---|
committer | terminaldweller <thabogre@gmail.com> | 2021-11-11 17:58:22 +0000 |
commit | 6777413a7f9c8d9ab784e7a39dfb5f60e405cb7b (patch) | |
tree | 691ae46a355c35230cbba30c6f80e766a0d3158c /docker-compose.yaml | |
parent | update (diff) | |
download | devourer-6777413a7f9c8d9ab784e7a39dfb5f60e405cb7b.tar.gz devourer-6777413a7f9c8d9ab784e7a39dfb5f60e405cb7b.zip |
WIP
Diffstat (limited to '')
-rw-r--r-- | docker-compose.yaml | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/docker-compose.yaml b/docker-compose.yaml new file mode 100644 index 0000000..5a2bccf --- /dev/null +++ b/docker-compose.yaml @@ -0,0 +1,28 @@ +version: "3.7" +services: + devourer: + image: devourer + networks: + - mainnet + - tikanet + depends_on: + - tika + ports: + - "9009:80" + environment: + - TIKA_SERVER_ENDPOINT="tika:9998" + - AUDIO_DUMP_DIR="/tmp" + - WIKI_SEARCH_URL="https://en.wikipedia.org/w/api.php" + - SERVER_DEPLOYMENT_TYPE=deployment + cap_drop: + - ALL + entrypoint: ["/docker-entrypoint.sh"] + tika: + image: apache/tike:2.0.0 + networks: + - tikanet + cap_drop: + - ALL +networks: + mainnet: + tikanet: |