Docker

Single container version

Create network on Docker Engine

$ docker network create some-network

Start filingbox-home container

$ docker run -d --name filingbox-team \
    --network some-network \
    --restart always \
    -v storage:/var/opt/filingbox/team \
    -v conf:/etc/opt/filingbox/team \
    -v logs:/var/log/filingbox/team \
    -v database_volume:/var/lib/mysql \
    -p 10080:10080 \
    filingbox/filingbox-team-single:latest

How to check if your FilingBox Home is working

You can check if your FilingBox Home is working after running a container by the following command.

If you see the lines "Starting TLS Server at :443" and "Starting Server at :80", your FilingBox Home is ready to use.

$ docker logs -f filingbox-home


info fuse/fusebridge.go:265 fuse mounted, /var/opt/filingbox/home/fuse/
info restapi/restapi.go:122 Starting TLS Server at :443
info restapi/restapi.go:126 Starting Server at :80
Have more questions? Submit a request