This image provides a basic Owncloud instance that, unlike most other images in the Docker Hub, exposes a FastCGI endpoint instead of bundling the webserver with it. You'll have to use an external webserver (such as nginx) in order to use this image.
This image builds on fcoelho/phpfpm, and doesn't have any other configuration options.
There are two volumes:
/owncloud: the owncloud source code/data: user filesOne way of using this image is running it with Fig. In
such an environment, the following fig.yml could be used to link all the
appropriate containers. Check the nginx configuration
directly on Owncloud's website.
www:
image: nginx
...
php:
image: fcoelho/owncloud
links:
- mysql:mysql
volumes:
- owncloud:/owncloud
- data:/data
mysql:
...
Content type
Image
Digest
sha256:1d9fabcde…
Size
145.7 MB
Last updated
almost 10 years ago
docker pull fcoelho/owncloud