mirror of
https://github.com/vimagick/dockerfiles.git
synced 2024-12-25 02:04:06 +02:00
add memgraph
This commit is contained in:
parent
f45929a477
commit
84eb9a8130
15
README.md
15
README.md
@ -332,7 +332,7 @@ A collection of delicious docker recipes.
|
||||
- [x] cp-kafka-rest
|
||||
- [x] ksqldb-cli
|
||||
- [x] ksqldb-server
|
||||
- [x] couchdb
|
||||
- [x] couchdb :bucket:
|
||||
- [x] schollz/croc
|
||||
- [x] streamsets/datacollector
|
||||
- [x] daskdev
|
||||
@ -404,14 +404,15 @@ A collection of delicious docker recipes.
|
||||
- [x] jazzdd/phpvirtualbox
|
||||
- [x] sonatype/nexus3
|
||||
- [x] jupyter/notebook
|
||||
- [x] mariadb
|
||||
- [x] mariadb :bucket:
|
||||
- [x] matomo
|
||||
- [x] memgraph/memgraph-platform :bucket:
|
||||
- [x] metabase/metabase
|
||||
- [x] metasploitframework/metasploit-framework :skull:
|
||||
- [x] minio/minio
|
||||
- [x] mongo
|
||||
- [x] mongo :bucket:
|
||||
- [x] ccrisan/motioneye
|
||||
- [x] neo4j
|
||||
- [x] neo4j :bucket:
|
||||
- [x] lldap/lldap
|
||||
- [x] luzifer/nginx-sso
|
||||
- [x] n8nio/n8n
|
||||
@ -423,7 +424,7 @@ A collection of delicious docker recipes.
|
||||
- [x] ohmyform/ui
|
||||
- [x] osixia/openldap
|
||||
- [x] openresty/openresty
|
||||
- [x] opensearchproject/opensearch
|
||||
- [x] opensearchproject/opensearch :bucket:
|
||||
- [x] kylemanna/openvpn
|
||||
- [x] campbellsoftwaresolutions/osticket
|
||||
- [x] outlinewiki/outline
|
||||
@ -442,7 +443,7 @@ A collection of delicious docker recipes.
|
||||
- [x] pihole/pihole
|
||||
- [x] mcr.microsoft.com/playwright
|
||||
- [x] portainer/portainer :+1:
|
||||
- [x] postgres
|
||||
- [x] postgres :bucket:
|
||||
- [x] postgrest/postgrest
|
||||
- [x] prefecthq/prefect
|
||||
- [x] prom/prometheus
|
||||
@ -488,7 +489,7 @@ A collection of delicious docker recipes.
|
||||
- [x] tensorflow
|
||||
- [x] serving
|
||||
- [x] kitabisa/teler
|
||||
- [x] tile38/tile38
|
||||
- [x] tile38/tile38 :bucket:
|
||||
- [x] traccar/traccar
|
||||
- [x] traefik
|
||||
- [x] trinodb/trino
|
||||
|
7
memgraph/README.md
Normal file
7
memgraph/README.md
Normal file
@ -0,0 +1,7 @@
|
||||
memgraph
|
||||
========
|
||||
|
||||
[Memgraph][1] is an open source graph database built for real-time streaming
|
||||
and compatible with Neo4j.
|
||||
|
||||
[1]: https://github.com/memgraph/memgraph
|
20
memgraph/docker-compose.yml
Normal file
20
memgraph/docker-compose.yml
Normal file
@ -0,0 +1,20 @@
|
||||
#
|
||||
# See: https://memgraph.com/docs/configuration/configuration-settings
|
||||
#
|
||||
|
||||
version: "3.8"
|
||||
services:
|
||||
memgraph-platform:
|
||||
image: "memgraph/memgraph-platform:2.14.1-memgraph2.14.1-lab2.11.1-mage1.14.1"
|
||||
entrypoint: ["/usr/bin/supervisord"]
|
||||
ports:
|
||||
- "3000:3000" # Web
|
||||
- "7444:7444" # Log
|
||||
- "7687:7687" # Bolt
|
||||
volumes:
|
||||
- ./data/var:/var/lib/memgraph
|
||||
- ./data/log:/var/log/memgraph
|
||||
- ./data/etc:/etc/memgraph
|
||||
environment:
|
||||
MEMGRAPH: "--log-level=WARNING --also-log-to-stderr"
|
||||
restart: unless-stopped
|
Loading…
Reference in New Issue
Block a user