Fork me on GitHub

Organizations

@github @rss
1 results for wikijs
  • Schwierigkeitsgrad: Für jeden machbar
    images/featured-image.png
    Wiki.js è un potente software wiki open source che rende la documentazione un piacere con la sua semplice interfaccia. Oggi mostro come installare un servizio Wiki.js sulla Synology DiskStation. Opzione per i professionisti Come utente esperto di Synology, puoi ovviamente accedere con SSH e installare l’intera configurazione tramite il file Docker Compose. version: '3' services: wikijs: image: requarks/wiki:latest restart: always ports: - 8082:3000 links: - database environment: DB_TYPE: mysql DB_HOST: database DB_PORT: 3306 DB_NAME: my_wiki DB_USER: wikiuser DB_PASS: my_wiki_pass TZ: 'Europe/Berlin' database: image: mysql restart: always expose: - 3306 volumes: - .