summaryrefslogtreecommitdiffhomepage
path: root/public/v4/apps/focalboard.yml
blob: f041acc7a606dc5486fbc7b3c2dd9bf8bd2d54f9 (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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
captainVersion: 4
services:
    $$cap_appname-db:
        image: postgres:$$cap_postgres_version
        environment:
            POSTGRES_DB: $$cap_postgres_db
            POSTGRES_USER: $$cap_postgres_user
            POSTGRES_PASSWORD: $$cap_postgres_password
        volumes:
            - '$$cap_appname-db-data:/var/lib/postgresql/data'
        caproverExtra:
            notExposeAsWebApp: 'true'

    $$cap_appname:
        environment:
            CONFIG_JSON: '{"serverRoot":"http://srv-captain--$$cap_appname:8000","port":8000,"dbtype":"postgres","dbconfig":"postgres://$$cap_postgres_user:$$cap_postgres_password@srv-captain--$$cap_appname-db/$$cap_postgres_db?sslmode=disable&connect_timeout=10","postgres_dbconfig":"dbname=$$cap_postgres_db sslmode=disable","useSSL":false,"webpath":"./pack","filespath":"./files","telemetry":false,"session_expire_time":2592000,"session_refresh_time":18000,"localOnly":false,"enableLocalMode":true,"localModeSocketLocation":"/var/tmp/focalboard_local.socket"}'
        depends_on:
            - $$cap_appname-db
        caproverExtra:
            containerHttpPort: '8000'
            dockerfileLines:
                - FROM mattermost/focalboard:$$cap_focalboard_version
                - CMD printenv CONFIG_JSON > /opt/focalboard/config.json && /opt/focalboard/bin/focalboard-server

caproverOneClickApp:
    variables:
        - id: $$cap_focalboard_version
          label: Focalboard Version
          defaultValue: 0.6.5
          description: 'Check out their docker page for the valid tags https://hub.docker.com/r/mattermost/focalboard/tags'
        - id: $$cap_postgres_version
          label: Postgres Version
          defaultValue: 9.6.21
          description: 'Check out their docker page for the valid tags https://hub.docker.com/_/postgres?tab=tags'
        - id: $$cap_postgres_db
          label: Postgres Database
          defaultValue: boards
        - id: $$cap_postgres_user
          label: Postgres User
          defaultValue: boardsuser
        - id: $$cap_postgres_password
          label: Postgres Password
          defaultValue: $$cap_gen_random_hex(16)

    instructions:
        start: >-
            Focalboard is an open source, self-hosted alternative to Trello, Notion, and Asana.
            For more info visit https://www.focalboard.com/
        end: |-
            Focalboard has been successfully deployed!

            --------------------------------------------

            Before you proceed, please enable Websocket Support
            https://$$cap_root_domain/#/apps/details/$$cap_appname

            --------------------------------------------

            App is available as http://$$cap_appname.$$cap_root_domain
    displayName: Focalboard
    isOfficial: false
    description: >-
        Focalboard is an open source, self-hosted alternative to Trello, Notion, and Asana.
    documentation: >-
        This docker-compose is taken from
        https://github.com/mattermost/focalboard/blob/main/docker/docker-compose-db-nginx.yml