Skip to content

Docker Setup

Spera Alfredo Jeshoua edited this page May 14, 2025 · 2 revisions

Static Badge Deployment Badge

Overview

A guide to setting up and using alfresco-sftp in a Docker environment.

Note

Approach recommended for the production environment.

Prerequisites

Ensure you have the following installed on your machine:

Ensure Docker is running, and you have the correct permissions to use it (e.g., part of the docker group on Linux).

Steps

  1. Clone the alfresco-sftp repository to your machine.

    git clone https://github.com/isislab-unisa/alfresco-sftp.git
  2. Build the Docker image:

    docker build -t alfresco-sftp .
  3. Run the Docker container:

    docker run -p 3000:3000 alfresco-sftp
  4. The application will be served on the port 3000.

Clone this wiki locally