See social network users cryptocurrency addresses and balances. Powered by transparent blockchains.
https://iseeyour.cash
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
852 B
43 lines
852 B
version: "3"
|
|
services:
|
|
mongodb:
|
|
container_name: isyc_db
|
|
image: mongo:latest
|
|
restart: unless-stopped
|
|
ports:
|
|
- 27017:27017
|
|
volumes:
|
|
- ./mongodb:/data/db
|
|
networks:
|
|
- isyc_net
|
|
environment:
|
|
- MONGO_INITDB_ROOT_USERNAME=changeme
|
|
- MONGO_INITDB_ROOT_PASSWORD=insecure
|
|
command:
|
|
- '--logpath'
|
|
- '/var/log/mongodb/mongod.log'
|
|
healthcheck:
|
|
test:
|
|
- CMD
|
|
- mongo
|
|
- --eval
|
|
- "db.adminCommand('ping')"
|
|
|
|
app:
|
|
build: .
|
|
container_name: isyc_app
|
|
restart: unless-stopped
|
|
ports:
|
|
- 1338:1338
|
|
depends_on:
|
|
- mongodb
|
|
networks:
|
|
- isyc_net
|
|
environment:
|
|
- MONGODB_CONNSTRING=mongodb://changeme:insecure@mongodb
|
|
- MAX_PAGES_TO_SCAN=3
|
|
- RESCAN_MINUTES=60
|
|
|
|
networks:
|
|
isyc_net:
|
|
driver: bridge |