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.
skynet-webportal/docker-compose.blocker.yml

34 lines
707 B
YAML
Raw Normal View History

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:
health-check:
environment:
- BLOCKER_HOST=10.10.10.110
- BLOCKER_PORT=4000
2021-12-01 10:02:15 +00:00
blocker:
# uncomment "build" and comment out "image" to build from sources
# build: https://github.com/SkynetLabs/blocker.git#main
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
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