1
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2024-11-24 08:52:15 +02:00

update memgraph

This commit is contained in:
kevin 2024-02-22 00:16:35 +08:00
parent 84eb9a8130
commit de11914917
2 changed files with 43 additions and 28 deletions

View File

@ -312,12 +312,13 @@ A collection of delicious docker recipes.
- [x] 3proxy/3proxy
- [x] adguard/adguardhome
- [x] ghcr.io/linuxserver/airsonic :musical_note:
- [x] apify/actor-node
- [x] apify/actor-node-puppeteer-chrome
- [x] apify/actor-node-playwright
- [x] apify/actor-node-playwright-chrome
- [x] apify/actor-node-playwright-firefox
- [x] apify/actor-node-playwright-webkit
- [x] apify
- [x] actor-node
- [x] actor-node-playwright
- [x] actor-node-playwright-chrome
- [x] actor-node-playwright-firefox
- [x] actor-node-playwright-webkit
- [x] actor-node-puppeteer-chrome
- [x] archivebox/archivebox
- [x] docker.bintray.io/jfrog/artifactory-oss
- [x] jeffail/benthos
@ -389,39 +390,43 @@ A collection of delicious docker recipes.
- [x] ipfs/kubo
- [x] heartexlabs/label-studio
- [x] martialblog/limesurvey
- [x] lldap/lldap
- [x] mailhog/mailhog
- [x] linuxserver/mastodon
- [x] 42wim/matterbridge :octocat:
- [x] matrixconduit/matrix-conduit
- [x] getmeili/meilisearch :mag:
- [x] mitmproxy/mitmproxy
- [x] deluan/navidrome :musical_note:
- [x] netdata/netdata
- [x] nextcloud
- [x] sonatype/nexus3
- [ ] jwilder/nginx-proxy
- [x] tiangolo/nginx-rtmp :camera:
- [x] jazzdd/phpvirtualbox
- [x] sonatype/nexus3
- [x] jupyter/notebook
- [x] mariadb :bucket:
- [x] matomo
- [x] memgraph/memgraph-platform :bucket:
- [x] memgraph :bucket:
- [x] lab
- [x] memgraph
- [x] memgraph-mage
- [x] memgraph-platform
- [x] metabase/metabase
- [x] metasploitframework/metasploit-framework :skull:
- [x] minio/minio
- [x] mongo :bucket:
- [x] ccrisan/motioneye
- [x] deluan/navidrome :musical_note:
- [x] neo4j :bucket:
- [x] lldap/lldap
- [x] netdata/netdata
- [x] sonatype/nexus3
- [x] nextcloud
- [ ] jwilder/nginx-proxy
- [x] tiangolo/nginx-rtmp :camera:
- [x] jupyter/notebook
- [x] luzifer/nginx-sso
- [x] n8nio/n8n
- [x] illuspas/node-media-server :cn:
- [x] jorijn/nostream
- [x] scsibug/nostr-rs-relay
- [x] notaitech/nudenet
- [x] odoo
- [x] ohmyform
- [x] ohmyform/api
- [x] ohmyform/ui
- [x] api
- [x] ui
- [x] osixia/openldap
- [x] openresty/openresty
- [x] opensearchproject/opensearch :bucket:
@ -430,8 +435,6 @@ A collection of delicious docker recipes.
- [x] outlinewiki/outline
- [x] gabekangas/owncast
- [x] owncloud
- [x] jorijn/nostream
- [x] scsibug/nostr-rs-relay
- [x] owntracks
- [x] frontend
- [x] recorder
@ -440,6 +443,7 @@ A collection of delicious docker recipes.
- [x] viktorstrate/photoview
- [x] phplist/phplist
- [x] phpmyadmin
- [x] jazzdd/phpvirtualbox
- [x] pihole/pihole
- [x] mcr.microsoft.com/playwright
- [x] portainer/portainer :+1:

View File

@ -3,18 +3,29 @@
#
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"]
memgraph:
image: memgraph/memgraph-mage:1.14.1-memgraph-2.14.1
ports:
- "3000:3000" # Web
- "7444:7444" # Log
- "7687:7687" # Bolt
volumes:
- ./data/var:/var/lib/memgraph
# ./data/etc:/etc/memgraph
- ./data/log:/var/log/memgraph
- ./data/etc:/etc/memgraph
- ./data/var:/var/lib/memgraph
environment:
MEMGRAPH: "--log-level=WARNING --also-log-to-stderr"
- MEMGRAPH=--telemetry-enabled=false
restart: unless-stopped
lab:
image: memgraph/lab:2.11.1
ports:
- "3000:3000" # Web
environment:
- QUICK_CONNECT_MG_HOST=memgraph
- QUICK_CONNECT_MG_PORT=7687
depends_on:
- memgraph
restart: unless-stopped