This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
dokuwiki [2021/08/27 11:36] – [docker-compose.yml] 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-compose.yml that the https:// | Since everything is hosted through docker nowadays I have to mention that the docker-compose.yml that the https:// | ||
+ | ---- | ||
===== docker-compose.yml ===== | ===== docker-compose.yml ===== | ||
- | + | <code yaml docker-compose.yml> | |
- | services: | + | services: |
- | dokuwiki: | + | dokuwiki: |
- | image: ghcr.io/ | + | image: ghcr.io/ |
- | container_name: | + | container_name: |
- | environment: | + | environment: |
- | - PUID=1000 | + | - PUID=1000 |
- | - PGID=1000 | + | - PGID=1000 |
- | - TZ=Europe/ | + | - TZ=Europe/ |
- | networks: | + | networks: |
- nginx_reverse_proxy_default | - nginx_reverse_proxy_default | ||
- | | + | |
- ${PWD}/ | - ${PWD}/ | ||
- | | + | |
- | + | ||
- | networks: | + | networks: |
- | nginx_reverse_proxy_default: | + | nginx_reverse_proxy_default: |
- | external: true | + | external: true |
- | name: nginx_reverse_proxy_default | + | name: nginx_reverse_proxy_default |
- | + | ||
- | version: ' | + | version: ' |
+ | </ |