This repository has been archived on 2022-10-07. You can view files and clone it, but cannot push or open issues or pull requests.
2022-08-11 21:13:03 +00:00
|
|
|
version: "3.8"
|
2021-10-07 09:43:09 +00:00
|
|
|
|
|
|
|
x-logging: &default-logging
|
|
|
|
driver: json-file
|
|
|
|
options:
|
|
|
|
max-size: "10m"
|
|
|
|
max-file: "3"
|
|
|
|
|
|
|
|
services:
|
2022-01-05 15:15:31 +00:00
|
|
|
sia:
|
|
|
|
environment:
|
|
|
|
- MONGODB_URI=mongodb://${SKYNET_DB_HOST}:${SKYNET_DB_PORT}
|
|
|
|
- MONGODB_USER=${SKYNET_DB_USER}
|
|
|
|
- MONGODB_PASSWORD=${SKYNET_DB_PASS}
|
|
|
|
|
2021-10-07 09:43:09 +00:00
|
|
|
mongo:
|
2022-08-20 01:41:23 +00:00
|
|
|
image: mongo:4.4.16
|
2022-04-25 08:06:27 +00:00
|
|
|
command: --keyFile=/data/mgkey --replSet=${SKYNET_DB_REPLICASET:-skynet} --setParameter ShardingTaskExecutorPoolMinSize=10
|
2021-10-07 09:43:09 +00:00
|
|
|
container_name: mongo
|
|
|
|
restart: unless-stopped
|
|
|
|
logging: *default-logging
|
|
|
|
volumes:
|
|
|
|
- ./docker/data/mongo/db:/data/db
|
|
|
|
- ./docker/data/mongo/mgkey:/data/mgkey:rw
|
|
|
|
networks:
|
|
|
|
shared:
|
|
|
|
ipv4_address: 10.10.10.71
|
|
|
|
ports:
|
2021-10-08 12:05:55 +00:00
|
|
|
- "${SKYNET_DB_PORT}:27017"
|