-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
29 lines (29 loc) · 833 Bytes
/
docker-compose.yml
File metadata and controls
29 lines (29 loc) · 833 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
version: "3.6"
services:
db:
image: mongo:latest
restart: always
ports:
- 27017:27017
volumes:
- ./db:/data/db
# geoip:
# image: maxmindinc/geoipupdate
# restart: always
# environment:
# - GEOIPUPDATE_EDITION_IDS=GeoLite2-City
# - GEOIPUPDATE_FREQUENCY=168 # update every 7 days
# - GEOIPUPDATE_ACCOUNT_ID=
# - GEOIPUPDATE_LICENSE_KEY=
# volumes:
# - ./geoip:/usr/share/GeoIP
# web:
# image: tivolicloud/metaverse:latest
# restart: always
# ports:
# - 3000:3000/tcp
# environment:
# - DB_URI=mongodb://db
# - GEOLITE2_CITY_DB=/geoip/GeoLite2-City.mmdb
# volumes:
# - ./geoip:/geoip:ro