Initial commit

This commit is contained in:
caskd 2019-08-07 16:31:22 +02:00
commit af956abdc3
No known key found for this signature in database
GPG Key ID: 4D0C454CCA5DF3B6
2 changed files with 36 additions and 0 deletions

2
.gitignore vendored Normal file
View File

@ -0,0 +1,2 @@
.*~
certificates/

34
zeronet.yml Normal file
View File

@ -0,0 +1,34 @@
version: '3.7'
x-logging: &json-log
driver: 'json-file'
options:
max-size: 20m
max-file: '5'
x-singlen0-start: &s0s
replicas: 1
restart_policy:
condition: any
update_config:
parallelism: 1
delay: 5s
order: start-first
failure_action: rollback
placement:
constraints: [node.hostname == fra-n0]
volumes:
data:
services:
server:
image: localhost:5000/zeronet
deploy: *s0s
logging: *json-log
environment:
ENABLE_TOR: 'true'
ports:
- '43110:43110'
volumes:
- 'data:/root/data'