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-12-01 10:02:15 +00:00
|
|
|
|
|
|
|
x-logging: &default-logging
|
|
|
|
driver: json-file
|
|
|
|
options:
|
|
|
|
max-size: "10m"
|
|
|
|
max-file: "3"
|
|
|
|
|
|
|
|
services:
|
2022-01-20 11:57:23 +00:00
|
|
|
health-check:
|
|
|
|
environment:
|
|
|
|
- BLOCKER_HOST=10.10.10.110
|
|
|
|
- BLOCKER_PORT=4000
|
|
|
|
|
2021-12-01 10:02:15 +00:00
|
|
|
blocker:
|
2022-03-24 12:37:14 +00:00
|
|
|
# uncomment "build" and comment out "image" to build from sources
|
|
|
|
# build: https://github.com/SkynetLabs/blocker.git#main
|
2022-06-27 18:16:43 +00:00
|
|
|
image: skynetlabs/blocker:0.1.2
|
2021-12-01 10:02:15 +00:00
|
|
|
container_name: blocker
|
|
|
|
restart: unless-stopped
|
|
|
|
logging: *default-logging
|
|
|
|
env_file:
|
|
|
|
- .env
|
2021-12-09 16:51:40 +00:00
|
|
|
volumes:
|
|
|
|
- ./docker/data/nginx/blocker:/data/nginx/blocker
|
2021-12-01 10:02:15 +00:00
|
|
|
expose:
|
|
|
|
- 4000
|
|
|
|
networks:
|
|
|
|
shared:
|
2021-12-14 09:10:15 +00:00
|
|
|
ipv4_address: 10.10.10.110
|
2021-12-01 10:02:15 +00:00
|
|
|
depends_on:
|
|
|
|
- mongo
|
|
|
|
- sia
|