Advertisement
Guest User

Untitled

a guest
Dec 16th, 2017
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.73 KB | None | 0 0
  1. version: '3'
  2. services:
  3. mediawiki:
  4. image: mediawiki
  5. restart: always
  6. ports:
  7. - 8080:80
  8. links:
  9. - database
  10. volumes:
  11. - /var/www/html/images
  12. # After initial setup, download LocalSettings.php to the same directory as
  13. # this yaml and uncomment the following line and use compose to restart
  14. # the mediawiki service
  15. # - ./LocalSettings.php:/var/www/html/LocalSettings.php
  16. database:
  17. image: mariadb
  18. restart: always
  19. environment:
  20. # @see https://phabricator.wikimedia.org/source/mediawiki/browse/master/includes/DefaultSettings.php
  21. MYSQL_DATABASE: my_wiki
  22. MYSQL_USER: wikiuser
  23. MYSQL_PASSWORD: example
  24. MYSQL_RANDOM_ROOT_PASSWORD: yes
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement