This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
dokuwiki [2021/08/25 16:01] – alexk7110 | dokuwiki [2021/08/28 17:52] (current) – [DokuWiki Troubleshooting] alexk7110 | ||
---|---|---|---|
Line 2: | Line 2: | ||
Application Setup | Application Setup | ||
- | Upon first install go to http://heimdall.lan:8090/ | + | Upon first install go to https://your_own_wiki_domain.com/ |
- | once you have completed the setup, restart the container, login as admin and set "Use nice URLs" in the admin/ | + | once you have completed the setup, restart the container, login as admin and set "Use nice URLs" in the admin/ |
===== The docker solution ===== | ===== The docker solution ===== | ||
- | Since everything is hosted through docker nowadays I have to mention that the docker-composed | + | Since everything is hosted through docker nowadays I have to mention that the docker-compose.yml |
+ | ---- | ||
+ | ===== docker-compose.yml ===== | ||
+ | <code yaml docker-compose.yml> | ||
+ | services: | ||
+ | dokuwiki: | ||
+ | image: ghcr.io/ | ||
+ | container_name: | ||
+ | environment: | ||
+ | - PUID=1000 | ||
+ | - PGID=1000 | ||
+ | - TZ=Europe/ | ||
+ | networks: | ||
+ | - nginx_reverse_proxy_default | ||
+ | volumes: | ||
+ | - ${PWD}/ | ||
+ | restart: unless-stopped | ||
+ | |||
+ | networks: | ||
+ | nginx_reverse_proxy_default: | ||
+ | external: true | ||
+ | name: nginx_reverse_proxy_default | ||
+ | |||
+ | version: ' | ||
+ | </ |