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"
|
2022-05-10 15:13:50 +00:00
|
|
|
|
|
|
|
x-logging: &default-logging
|
|
|
|
driver: json-file
|
|
|
|
options:
|
|
|
|
max-size: "10m"
|
|
|
|
max-file: "3"
|
|
|
|
|
|
|
|
services:
|
2022-05-10 15:18:10 +00:00
|
|
|
pinner:
|
2022-05-10 15:13:50 +00:00
|
|
|
# uncomment "build" and comment out "image" to build from sources
|
|
|
|
# build: https://github.com/SkynetLabs/pinner.git#main
|
2022-08-18 15:25:26 +00:00
|
|
|
image: skynetlabs/pinner:0.7.1
|
2022-05-10 15:13:50 +00:00
|
|
|
container_name: pinner
|
|
|
|
restart: unless-stopped
|
|
|
|
logging: *default-logging
|
|
|
|
env_file:
|
|
|
|
- .env
|
2022-07-05 13:23:46 +00:00
|
|
|
volumes:
|
|
|
|
- ./docker/data/pinner/logs:/logs
|
2022-05-24 09:04:39 +00:00
|
|
|
environment:
|
2022-05-24 11:48:58 +00:00
|
|
|
- PINNER_LOG_LEVEL=${PINNER_LOG_LEVEL:-info}
|
2022-05-10 15:13:50 +00:00
|
|
|
expose:
|
|
|
|
- 4000
|
|
|
|
networks:
|
|
|
|
shared:
|
|
|
|
ipv4_address: 10.10.10.130
|
|
|
|
depends_on:
|
|
|
|
- mongo
|
|
|
|
- sia
|