Przeglądaj źródła

Clarify owncloud data storage and add simple example docker-compose.yml

Tianon Gravi 9 lat temu
rodzic
commit
5ef072b622
2 zmienionych plików z 17 dodań i 1 usunięć
  1. 3 1
      owncloud/content.md
  2. 14 0
      owncloud/docker-compose.yml

+ 3 - 1
owncloud/content.md

@@ -22,7 +22,7 @@ For a MySQL database you can link an database container, e.g. `--link my-mysql:m
 
 ## Persistent data
 
-All data is stored within the default volume `/var/www/html`. With this volume, ownCloud will only be updated when the file `version.php` is not present.
+All data beyond what lives in the database (file uploads, etc) is stored within the default volume `/var/www/html`. With this volume, ownCloud will only be updated when the file `version.php` is not present.
 
 -	`-v /<mydatalocation>:/var/www/html`
 
@@ -35,3 +35,5 @@ For fine grained data persistence, you can use 3 volumes, as shown below.
 ### Caveat
 
 When using the 6.0 image, you need to map the host port to the container port that apache listens on when going through the installation wizard. By default, this is port 80.
+
+## %%COMPOSE%%

+ 14 - 0
owncloud/docker-compose.yml

@@ -0,0 +1,14 @@
+# access via "http://localhost:8080" (or "http://$(docker-machine ip):8080" if using docker-machine)
+# during initial setup, use "mysql" as the MySQL hostname
+
+owncloud:
+  image: owncloud
+  links:
+    - db:mysql
+  ports:
+    - 8080:80
+
+db:
+  image: mariadb
+  environment:
+    MYSQL_ROOT_PASSWORD: example