Server installation and operation


Table of contents


Installing and running Docker Engine

Follow the official Docker Docs instructions to install Docker Engine.
Link : https://docs.docker.com/engine/install 

Running the Docker Container

  1. Run the following command on your server:
    docker run -d --name filingbox-giga \
    --network host \
    --device /dev/fuse \
    --cap-add SYS_ADMIN \
    --restart always \
    -v storage:/var/opt/filingbox/giga \
    -v config:/etc/opt/filingbox/giga \
    -v logs:/var/log/filingbox/giga \
    -v samba-accounts:/etc \
    -v samba-libraries:/var/lib/samba \
    -v database:/var/lib/mysql \
    filingbox/filingbox-giga-single:latest
  2. To verify that the FilingBox GIGA server is running correctly, execute the following command:
    docker logs -f filingbox-giga
  3. If you see the lines Starting TLS Server at :443 and Starting Server at :80, the FilingBox GIGA server is running successfully.
    ...
    ...
    info restapi/restapi.go:122 Starting TLS Server at :443
    info restapi/restapi.go:126 Starting Server at :80
    ...
    ...

Data backup and recovery

The product does not provide standalone backup and recovery features, aside from granting the administrator account access to the backup drive.

Develop and manage a backup and recovery policy, such as copying user files to a separate storage location. Refer to Changing Administrator Account Backup Drive Access Permissions for more details.

Have more questions? Submit a request