owncloud ed

docker ed

https://doc.owncloud.org/server/10.0/admin_manual/installation/docker/index.html

preparing
# Create a new project directory
mkdir owncloud-docker-server

cd owncloud-docker-server

# Copy docker-compose.yml from the GitHub repository
wget https://raw.githubusercontent.com/owncloud-docker/server/master/docker-compose.yml

# Create the environment configuration file
cat << EOF > .env
OWNCLOUD_VERSION=10.0
OWNCLOUD_DOMAIN=localhost
ADMIN_USERNAME=admin
ADMIN_PASSWORD=admin
HTTP_PORT=8080
EOF

build and start
docker-compose up -d

stop
docker-compose down

mounting local directories ed

go into the container

vi config/config.php
add the line
'files_external_allow_create_new_local' => 'true',

then on the host in the .yml file

    - volumes
      /external/path:/internal/path

in the web interface, as admin, in the settings/storage, add local...

Categories: Computer