forked from github.com/plausible-hosting
Initial commit
This commit is contained in:
25
geoip/docker-compose.geoip.yml
Normal file
25
geoip/docker-compose.geoip.yml
Normal file
@ -0,0 +1,25 @@
|
||||
version: "3.3"
|
||||
services:
|
||||
plausible:
|
||||
depends_on:
|
||||
- geoip
|
||||
links:
|
||||
- geoip
|
||||
environment:
|
||||
- GEOLITE2_COUNTRY_DB=/geoip/GeoLite2-Country.mmdb
|
||||
|
||||
geoip:
|
||||
image: maxmindinc/geoipupdate
|
||||
ports:
|
||||
- 1080:1080
|
||||
environment:
|
||||
- GEOIPUPDATE_EDITION_IDS=GeoLite2-Country
|
||||
- GEOIPUPDATE_FREQUENCY=168 # update every 7 days
|
||||
env_file:
|
||||
geoip/geoip.conf
|
||||
volumes:
|
||||
- geoip:/usr/share/GeoIP
|
||||
|
||||
volumes:
|
||||
geoip:
|
||||
driver: local
|
2
geoip/geoip.conf
Normal file
2
geoip/geoip.conf
Normal file
@ -0,0 +1,2 @@
|
||||
GEOIPUPDATE_ACCOUNT_ID=<your-account-id>
|
||||
GEOIPUPDATE_LICENSE_KEY=<your-license-key>
|
Reference in New Issue
Block a user