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.pinner.yml

29 lines
609 B
YAML
Raw Normal View History

2022-05-10 15:13:50 +00:00
version: "3.7"
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-05-24 09:04:39 +00:00
image: skynetlabs/pinner:0.1.0
2022-05-10 15:13:50 +00:00
container_name: pinner
restart: unless-stopped
logging: *default-logging
env_file:
- .env
2022-05-24 09:04:39 +00:00
environment:
- PINNER_LOG_LEVEL=${PINNER_LOG_LEVEL:-trace}
2022-05-10 15:13:50 +00:00
expose:
- 4000
networks:
shared:
ipv4_address: 10.10.10.130
depends_on:
- mongo
- sia