main

mattermost/focalboard

Last updated at: 29/12/2023 09:39

docker-compose.yml

TLDR

This docker-compose.yml file is used for setting up a Docker container for the Focalboard application. It defines the configuration for building the Docker image, the container name, the volume mapping, port forwarding, and environment variables.

Classes

None

Methods

None

version: "3"
services:
  app:
    build:
      context: ../
      dockerfile: docker/Dockerfile
    container_name: focalboard
    volumes:
      - fbdata:/opt/focalboard/data
    ports:
      - 80:8000
    environment:
      - VIRTUAL_HOST=focalboard.local
      - VIRTUAL_PORT=8000

volumes:
  fbdata: