mirror of
https://github.com/plausible/hosting.git
synced 2024-11-17 21:25:58 -06:00
Add configuration for GeopIP and facilitate env files usage
This commit is contained in:
parent
6f820afa84
commit
83cac35966
@ -4,12 +4,24 @@ services:
|
|||||||
image: bytemark/smtp
|
image: bytemark/smtp
|
||||||
restart: always
|
restart: always
|
||||||
|
|
||||||
|
geoip:
|
||||||
|
image: maxmindinc/geoipupdate
|
||||||
|
environment:
|
||||||
|
- GEOIPUPDATE_EDITION_IDS=GeoLite2-Country
|
||||||
|
- GEOIPUPDATE_FREQUENCY=168 # update every 7 days
|
||||||
|
env_file: env/geoip-conf.env
|
||||||
|
volumes:
|
||||||
|
- geoip:/usr/share/GeoIP
|
||||||
|
|
||||||
plausible_db:
|
plausible_db:
|
||||||
image: postgres:12
|
image: postgres:12
|
||||||
volumes:
|
volumes:
|
||||||
- db-data:/var/lib/postgresql/data
|
- db-data:/var/lib/postgresql/data
|
||||||
environment:
|
environment:
|
||||||
- POSTGRES_PASSWORD=postgres
|
- POSTGRES_PASSWORD=postgres
|
||||||
|
networks:
|
||||||
|
- internal
|
||||||
|
restart: always
|
||||||
|
|
||||||
plausible_events_db:
|
plausible_events_db:
|
||||||
image: yandex/clickhouse-server:latest
|
image: yandex/clickhouse-server:latest
|
||||||
@ -19,24 +31,33 @@ services:
|
|||||||
nofile:
|
nofile:
|
||||||
soft: 262144
|
soft: 262144
|
||||||
hard: 262144
|
hard: 262144
|
||||||
|
networks:
|
||||||
|
- internal
|
||||||
|
restart: always
|
||||||
|
|
||||||
plausible:
|
plausible:
|
||||||
image: plausible/analytics:latest
|
image: plausible/analytics:latest
|
||||||
command: sh -c "sleep 10 && /entrypoint.sh db createdb && /entrypoint.sh db migrate && /entrypoint.sh db init-admin && /entrypoint.sh run"
|
command: sh -c "sleep 10 && /entrypoint.sh db createdb && /entrypoint.sh db migrate && /entrypoint.sh db init-admin && /entrypoint.sh run"
|
||||||
depends_on:
|
depends_on:
|
||||||
|
- mail
|
||||||
|
- geoip
|
||||||
- plausible_db
|
- plausible_db
|
||||||
- plausible_events_db
|
- plausible_events_db
|
||||||
- mail
|
|
||||||
ports:
|
|
||||||
- 80:8000 #Remove this line if you plan to use Traefik
|
|
||||||
env_file:
|
env_file:
|
||||||
- plausible-conf.env
|
- env/plausible-conf.env
|
||||||
|
networks:
|
||||||
|
- internal
|
||||||
|
- web
|
||||||
|
environment:
|
||||||
|
- GEOLITE2_COUNTRY_DB=/geoip/GeoLite2-Country.mmdb
|
||||||
|
volumes:
|
||||||
|
- geoip:/geoip:ro
|
||||||
|
restart: always
|
||||||
labels:
|
labels:
|
||||||
# Uncomment line below if you plan to use Traefik
|
- "traefik.enable=true"
|
||||||
# - "traefik.enable=true"
|
- "traefik.http.routers.plausible.rule=Host(`yourdomain.com`)" # replace this with your own domain
|
||||||
# - "traefik.http.routers.plausible.rule=Host(`yourdomain.com`)" # replace this with your own domain
|
- "traefik.http.routers.plausible.entrypoints=websecure"
|
||||||
# - "traefik.http.routers.plausible.entrypoints=websecure"
|
- "traefik.http.services.plausible.loadbalancer.server.port=8000"
|
||||||
# - "traefik.http.services.plausible.loadbalancer.server.port=8000"
|
|
||||||
|
|
||||||
volumes:
|
volumes:
|
||||||
db-data:
|
db-data:
|
||||||
@ -45,3 +66,9 @@ volumes:
|
|||||||
driver: local
|
driver: local
|
||||||
geoip:
|
geoip:
|
||||||
driver: local
|
driver: local
|
||||||
|
|
||||||
|
networks:
|
||||||
|
web:
|
||||||
|
external: true
|
||||||
|
internal:
|
||||||
|
external: false
|
||||||
|
0
geoip/geoip.conf → env/geopip.env
vendored
0
geoip/geoip.conf → env/geopip.env
vendored
@ -1,21 +0,0 @@
|
|||||||
version: "3.3"
|
|
||||||
services:
|
|
||||||
plausible:
|
|
||||||
depends_on:
|
|
||||||
- geoip
|
|
||||||
environment:
|
|
||||||
- GEOLITE2_COUNTRY_DB=/geoip/GeoLite2-Country.mmdb
|
|
||||||
|
|
||||||
geoip:
|
|
||||||
image: maxmindinc/geoipupdate
|
|
||||||
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
|
|
Loading…
Reference in New Issue
Block a user