Changes for page FileSync
Last modified by Jan Brinkhaus on 2023/02/03 13:33
Change comment:
Uploaded new attachment "docker-compose.yml.txt", version 1.1
Summary
-
Page properties (1 modified, 0 added, 0 removed)
-
Attachments (0 modified, 1 added, 0 removed)
Details
- Page properties
-
- Content
-
... ... @@ -1,45 +1,14 @@ 1 - =Prerequisite:Dockeration=1 +Installation instructions Linux, Windows ( [[https:~~/~~/docs.docker.com/compose/install/other/ )>>https://docs.docker.com/compose/install/other/]] 2 2 3 - FileSync is deployed as docker container. Youneed arunning docker installationforit to be installed.if you setup a new VM for this, we suggest the newestUbuntu LTS release.3 +Configuration in UI 4 4 5 - If you alreadyhave a server or VM with a running docker,just skip this chapter andgo on with "Installation".5 +Download token valid till ... 6 6 7 -=== Install docker on linux === 8 8 9 -The installation of docker on linux is straightforward. If you Google this topic you will find explanations from the Docker website which invite you to do a manual installation of docker by downloading and installing their actual version. From a technical perspective this is not needed. At least Brinkhaus does not need bleeding edge docker installation. We recommend to just use the docker version which comes from your Linux distribution. 10 - 11 -On a typical Ubuntu or Debian you go with 12 - 13 -{{code language="Shell script"}} 14 -sudo apt install docker-compose 15 -{{/code}} 16 - 17 -=== Install docker on Windows === 18 - 19 -The installation of docker for Windows is described here: [[https:~~/~~/docs.docker.com/desktop/install/windows-install/>>https://docs.docker.com/desktop/install/windows-install/]] 20 - 21 -= Installation = 22 - 23 -On a computer with Docker, just choose a target directory which fits for your case, deploy our docker-compose file there and start the app. 24 - 25 -{{code language="Shell script"}} 26 26 sudo mkdir /var/docker_data 27 -cd /var/docker_data/ 28 -wget https://xwiki.brinkhaus-gmbh.de/bin/download/Product%20support/FileSync/WebHome/docker-compose.yml?rev=1.1 29 -sudo docker login registry.gitlab.com/v2/b3935 -u datastore-dl -p glpat-S9xzXzoUxuxGboW53r2x 30 30 31 -sudo docker-compose up 32 -{{/code}} 33 - 34 -You are after 35 - 36 - 37 -sudo mkdir /var/docker_data 38 - 39 39 cd /var/docker_data/ 40 40 41 -[[https:~~/~~/xwiki.brinkhaus-gmbh.de/bin/download/Product%20support/FileSync/WebHome/docker-compose.yml?rev=1.1>>https://xwiki.brinkhaus-gmbh.de/bin/download/Product%20support/FileSync/WebHome/docker-compose.yml?rev=1.1]] 42 - 43 43 sudo apt install docker docker-compose 44 44 45 45 sudo docker login registry.gitlab.com/v2/b3935 -u datastore-dl -p glpat-S9xzXzoUxuxGboW53r2x
- docker-compose.yml.txt
-
- Author
-
... ... @@ -1,0 +1,1 @@ 1 +XWiki.brinkhaus - Size
-
... ... @@ -1,0 +1,1 @@ 1 +236 bytes - Content
-
... ... @@ -1,0 +1,15 @@ 1 +version: "3" 2 + 3 +services: 4 + 5 + filesync: 6 + image: registry.gitlab.com/b3935/ftpmodule/filesync:latest 7 + container_name: filesync 8 + restart: unless-stopped 9 + 10 + volumes: 11 + - ./data:/app/data 12 + 13 + ports: 14 + - 80:80 15 +