Changes for page Deployment
Last modified by chrisby on 2024/03/03 14:54
Summary
-
Page properties (1 modified, 0 added, 0 removed)
Details
- Page properties
-
- Content
-
... ... @@ -1,5 +1,5 @@ 1 1 (% style="text-align: justify;" %) 2 - ======docker-compose.yml======2 +**docker-compose.yml** 3 3 4 4 {{code language="yaml"}} 5 5 version: "3.3" ... ... @@ -11,7 +11,7 @@ 11 11 12 12 services: 13 13 traefik: 14 - image: "traefik: v2.10.4"14 + image: "traefik:latest" 15 15 container_name: "traefik" 16 16 restart: unless-stopped 17 17 command: ... ... @@ -20,7 +20,7 @@ 20 20 - "--providers.docker.exposedbydefault=false" 21 21 - "--entrypoints.websecure.address=:443" 22 22 - "--certificatesresolvers.myresolver.acme.tlschallenge=true" 23 - # - "--certificatesresolvers.myresolver.acme.email=<email>" 23 + # - "--certificatesresolvers.myresolver.acme.email=<your-email>" 24 24 - "--certificatesresolvers.myresolver.acme.storage=/letsencrypt/acme.json" 25 25 # Uncomment for test mode. This allows detailed logging and creation of a fake certificate. 26 26 # - "--log.level=DEBUG" ... ... @@ -32,7 +32,7 @@ 32 32 - "/var/run/docker.sock:/var/run/docker.sock:ro" 33 33 34 34 xwiki: 35 - image: "xwiki: 15.7.0-postgres-tomcat"35 + image: "xwiki:stable-postgres-tomcat" 36 36 container_name: xwiki-web 37 37 restart: unless-stopped 38 38 depends_on: ... ... @@ -63,9 +63,10 @@ 63 63 - POSTGRES_INITDB_ARGS="--encoding=UTF8" 64 64 {{/code}} 65 65 66 -====== Instructions ====== 67 - 68 68 * Execute {{code language="none"}}docker-compose up -d{{/code}} 69 69 * Go to {{code language="none"}}https://subdomain>{{/code}}. XWiki may take a few minutes to set up. 70 70 * Once initialization is complete, simply follow the instructions, including creating an admin account. 71 -* After deploying XWiki, you should configure it through the GUI to customize the website to your needs. I have written an article about the [[most important configurations>>doc:Software Stacks.XWiki.Most Important Configurations.WebHome]] that I had applied for this website. 69 + 70 + 71 +(% style="text-align: justify;" %) 72 +After deploying XWiki, you should configure it through the GUI to customize the website to your needs. I have written an article about the [[most important configurations>>doc:Software Stacks.XWiki.Most Important Configurations.WebHome]] that I had applied for this website.