1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- <!DOCTYPE html>
- <html lang="en" xmlns="http://www.w3.org/1999/xhtml">
- <head>
- <title>Run FocalBoard - Project and Task Management Platform - in Docker</title>
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
- <meta charset="UTF-8">
- <meta name="keywords" content="Browser Based,Docker Made Easy,Home Lab,Home Lab Ideas,Install Guide,Web Based,Web Based Tools,Debian,Focalboard,Kanban,Kanban Board,Linux,Project Management,Self-Hosted,Task Management,Todo,Ubuntu,Visual Task Manager,Visual Task Organization,Containerize,Containers,Docker,Docker Container,Docker Host,Docker How To,Docker Made Simple,Docker Setup Tutorial,Docker Simplified,How To,Tutorial,i12bretro">
- <meta name="author" content="i12bretro">
- <meta name="description" content="Run FocalBoard - Project and Task Management Platform - in Docker">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <meta name="revised" content="09/23/2024 04:38:31 AM" />
- <link rel="icon" type="image/x-icon" href="includes/favicon.ico">
- <script type="text/javascript" src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
- <script type="text/javascript" src="includes/js/steps.js"></script>
- <link href="css/steps.css" rel="stylesheet" type="text/css" />
- </head>
- <body>
- <div id="gridContainer">
- <div class="topMargin"></div>
- <div id="listName" class="topMargin">
- <h1>Run FocalBoard - Project and Task Management Platform - in Docker</h1>
- </div>
- <div></div>
- <div id="content">
- <h2>What is FocalBoard?</h2>
- <blockquote><em>Focalboard is an open source, multilingual, self-hosted project management tool that's an alternative to Trello, Notion, and Asana. It helps define, organize, track and manage work across individuals and teams. -<a href="https://github.com/mattermost/focalboard" target="_blank">https://github.com/mattermost/focalboard</a></em></blockquote>
- <h2>Installing Docker</h2>
- <ol>
- <li>Log into the Linux based device</li>
- <li>Run the following commands in the terminal
- <div class="codeBlock"># install prerequisites<br />
- sudo apt install apt-transport-https ca-certificates git curl software-properties-common gnupg-agent -y<br />
- # add docker gpg key<br />
- curl -fsSL https://download.docker.com/linux/$(awk -F'=' '/^ID=/{ print $NF }' /etc/os-release)/gpg | sudo apt-key add -<br />
- # add docker software repository<br />
- sudo add-apt-repository "deb [arch=$(dpkg --print-architecture)] https://download.docker.com/linux/$(awk -F'=' '/^ID=/{ print $NF }' /etc/os-release) $(lsb_release -cs) stable"<br />
- # install docker<br />
- sudo apt install docker-ce docker-compose containerd.io -y<br />
- # enable and start docker service<br />
- sudo systemctl enable docker && sudo systemctl start docker<br />
- # add the current user to the docker group<br />
- sudo usermod -aG docker $USER<br />
- # reauthenticate for the new group membership to take effect<br />
- su - $USER</div>
- </li>
- </ol>
- <h2>Running FocalBoard</h2>
- <ol>
- <li>Now that Docker is installed, run the following commands to setup the FocalBoard Docker container and run it
- <div class="codeBlock"># create working directories<br />
- mkdir ~/docker/focalboard/files -p<br />
- # set owner of working directories<br />
- sudo chown "$USER":"$USER" ~/docker -R<br />
- # allow the container to write to working directories<br />
- sudo chmod a+rwx -R ~/docker/focalboard<br />
- # run focalboard container<br />
- docker run -d --name focalboard -v ~/docker/focalboard/:/opt/focalboard/data -p 8000:8000 --restart=unless-stopped mattermost/focalboard</div>
- </li>
- <li>Open a web browser and navigate to http://DNSorIP:8000</li>
- <li>Click the link to create an account</li>
- <li>Completed the form by entering an email, username and password > Click Register</li>
- <li>Welcome to FocalBoard running in Docker</li>
- </ol>
- <p>Source: <a href="https://www.focalboard.com/download/personal-edition/docker/" target="_blank">https://www.focalboard.com/download/personal-edition/docker/</a></p> </div>
- </div>
- </body>
- </html>
-
|