Changes for page FileSync
Last modified by Jan Brinkhaus on 2023/02/03 13:33
Change comment:
There is no comment for this version
Summary
-
Page properties (1 modified, 0 added, 0 removed)
Details
- Page properties
-
- Content
-
... ... @@ -22,6 +22,8 @@ 22 22 23 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 24 25 +**Suggestion for quick start for linux** 26 + 25 25 {{code language="Shell script"}} 26 26 sudo mkdir /var/docker_data 27 27 cd /var/docker_data/ ... ... @@ -31,67 +31,30 @@ 31 31 sudo docker-compose up 32 32 {{/code}} 33 33 34 -You are after 36 +You are afterwards able to log in via the web interface on port 80 of the server where you installed FileSync. 35 35 36 36 37 - sudomkdir/var/docker_data39 +**Suggestion for quick start for Windows** 38 38 39 -cd / var/docker_data/41 +Place the docker-compose file from here [[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]] in a directory of your needs and run "docker-compose up". 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 42 43 - sudoaptinstalldockerdocker-compose44 +Variants / hints 44 44 45 - sudodocker loginregistry.gitlab.com/v2/b3935-udatastore-dl-pglpat-S9xzXzoUxuxGboW53r2x46 +You can adapt the docker-compose file to your local needs. The file which we give for q quick start is: 46 46 47 -sudo docker-compose up 48 +{{code language="docker-compose"}} 49 +version: "3" 48 48 49 -(% class="box" %) 50 -((( 51 -##version: "3"## 52 -))) 53 - 54 -(% class="box" %) 55 -((( 56 -##services: 57 - traefik: 58 - image~: traefik:v2.2 59 - command: 60 - - "~-~-providers.docker" 61 - - "~-~-entrypoints.web.address=:80" 62 - ports: 63 - - "80:80" 64 - volumes: 65 - - /var/run/docker.sock:/var/run/docker.sock 66 - - ./data:/var/docker_data/data## 67 -))) 68 - 69 -(% class="box" %) 70 -((( 71 -## filesync: 72 - image~: registry.gitlab.com/b3935/ftpmodule/filesync:latest 51 +services: 52 + filesync: 53 + image: registry.gitlab.com/b3935/ftpmodule/filesync:latest 73 73 container_name: filesync 74 74 restart: always 75 75 volumes: 76 - - ./data:/app/data## 77 -))) 57 + - ./data:/app/data 78 78 79 -(% class="box" %) 80 -((( 81 -### ports: 82 -# - 80:80## 83 -))) 59 + ports: 60 + - 80:80 84 84 85 -(% class="box" %) 86 -((( 87 -## labels: 88 - - "traefik.http.routers.filesync.entrypoints=web" 89 - - "traefik.http.routers.filesync.rule=Host(`datastore-playground.euprogigant.io`)" 90 - - "traefik.http.routers.filesync.middlewares=auth" 91 - - "traefik.http.services.filesync.loadbalancer.server.port=80" 92 - - "traefik.http.middlewares.auth.basicauth.users=admin:$$2y$$10$$2u0mbq4FI.EpN6Gu5O.BpO5Fh8RrXBr.MUT8JyqbYGtNfLn19OhTe" # credentials admin:changeme 93 -# - "traefik.http.middlewares.auth.basicauth.usersfile=/var/docker_data/data/settings/hashedPW.txt"## 94 -))) 95 - 96 - 97 - 62 +{{/code}}