summaryrefslogtreecommitdiffhomepage
path: root/public/v4/apps/neo4j.yml
blob: 5dcb5436260a42e651e650e8a378002812121e35 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
captainVersion: 4
services:
    $$cap_appname-db:
        image: neo4j:$$cap_neo4j_version
        volumes:
            - $$cap_appname-db-data:/data
        restart: unless-stopped
        environment:
            NEO4J_AUTH: $$cap_db_user/$$cap_db_pass
        caproverExtra:
            notExposeAsWebApp: 'true'
caproverOneClickApp:
    variables:
        - id: $$cap_neo4j_version
          label: Neo4j Version
          defaultValue: '4.1.9'
          description: Check out their Docker page for the valid tags https://hub.docker.com/_/neo4j?tab=tags
          validRegex: /^([^\s^\/])+$/
        - id: $$cap_db_user
          label: Neo4j Root User
          defaultValue: neo4j
          description: Username for the database user
          validRegex: /^([a-zA-Z0-9_])+$/
        - id: $$cap_db_pass
          label: Neo4j Root password
          defaultValue: $$cap_gen_random_hex(10)
          description: Password for the database user
          validRegex: /.{1,}/
    instructions:
        start: Neo4j is an open-source, NoSQL, native graph database that provides an ACID-compliant transactional backend for your applications. Enter your configuration parameters and click on next.
        end: Neo4j is deployed and available as srv-captain--$$cap_appname-db:7687 for Bolt and srv-captain--$$cap_appname-db:7474 for HTTP connections.
    displayName: Neo4j
    isOfficial: true
    description: Neo4j is an open-source, NoSQL, native graph database that provides an ACID-compliant transactional backend for your applications.
    documentation: Taken from https://hub.docker.com/_/neo4j