In this guide we will only focus on using the prebuilt images from Docker Hub.
Prerequisites: You have Git, Docker, Docker compose and Nginx pre-installed.
Clone Mastodon's repository.
| server { | |
| listen 80; | |
| server_name example.wiki; | |
| # this config assumes that MediaWiki is installed into /var/www/yourwiki/html, | |
| # so LocalSettings.php would be located at /var/www/yourwiki/html/LocalSettings.php | |
| root /var/www/yourwiki/html; | |
| index index.php; |
| Code | Symbol | Name_plural | |
|---|---|---|---|
| USD | $ | US dollars | |
| CAD | CA$ | Canadian dollars | |
| EUR | € | Euros | |
| AED | AED | UAE dirhams | |
| AFN | Af | Afghan Afghanis | |
| ALL | ALL | Albanian lekë | |
| AMD | AMD | Armenian drams | |
| ARS | AR$ | Argentine pesos | |
| AUD | AU$ | Australian dollars |
| server: | |
| ########################################################################### | |
| # BASIC SETTINGS | |
| ########################################################################### | |
| # Time to live maximum for RRsets and messages in the cache. If the maximum | |
| # kicks in, responses to clients still get decrementing TTLs based on the | |
| # original (larger) values. When the internal TTL expires, the cache item | |
| # has expired. Can be set lower to force the resolver to query for data | |
| # often, and not trust (very large) TTL values. | |
| cache-max-ttl: 86400 |
In this guide we will only focus on using the prebuilt images from Docker Hub.
Prerequisites: You have Git, Docker, Docker compose and Nginx pre-installed.
Clone Mastodon's repository.
A zoomable candlestick chart.
Copyright © 2015, Anil Nair - MIT License
| CREATE TABLE IF NOT EXISTS `country` ( | |
| `id` int(11) NOT NULL AUTO_INCREMENT, | |
| `iso` char(2) NOT NULL, | |
| `name` varchar(80) NOT NULL, | |
| `nicename` varchar(80) NOT NULL, | |
| `iso3` char(3) DEFAULT NULL, | |
| `numcode` smallint(6) DEFAULT NULL, | |
| `phonecode` int(5) NOT NULL, | |
| PRIMARY KEY (`id`) | |
| ) ENGINE=MyISAM DEFAULT CHARSET=latin1; |