Install Super Productivity Inside Docker Container on Linux

Install Super Productivity Inside Docker Container on Linux

Super Productivity is an open-source task management and time tracking application designed to help users organize their work efficiently. It's particularly useful for developers and teams who need to integrate task management with time tracking.

This tutorial explains how to install Super Productivity inside a Docker container on Linux. Commands have been tested on Ubuntu.

Prepare environment

Make sure you have installed Docker in your system. If you are using Ubuntu, installation instructions can be found in the post.

Install Super Productivity

  • Host network

Run the following command to create a container for Super Productivity that uses host network:

docker run -d --name=super-productivity --restart=always --network=host \
    johannesjo/super-productivity
  • User-defined bridge network

User-defined bridge network can be used for listening on different port. By default, Super Productivity service is listening on port 80. It can be changed with -p option.

docker network create app-net
docker run -d --name=super-productivity --restart=always --network=app-net \
    -p 8080:80 \
    johannesjo/super-productivity

Testing Super Productivity

To access a web application, open a web browser and go to http://<IP_ADDRESS>, where <IP_ADDRESS> is the IP address of the system.

Super Productivity Inside Docker Container on Linux

Uninstall Super Productivity

To completely remove Super Productivity, remove its container:

docker rm --force super-productivity

Remove Super Productivity image:

docker rmi johannesjo/super-productivity

If a user-defined bridge network was created, you can delete it as follows:

docker network rm app-net

Leave a Comment

Cancel reply

Your email address will not be published.