Delete Sharry

This commit is contained in:
Joey Hafner 2022-04-05 09:05:55 -07:00
parent 5af04d978c
commit 21687ee0fc
4 changed files with 0 additions and 69 deletions

View File

@ -1 +0,0 @@
DOCKER_DATA=/home/joey/data

View File

@ -1,2 +0,0 @@
Github: https://github.com/eikek/sharry
Configuration Reference: https://eikek.github.io/sharry/doc/configure

View File

@ -1,34 +0,0 @@
version: '3'
services:
sharry:
image: eikek0/sharry:latest
container_name: sharry_sharry
command: /opt/sharry.conf
volumes:
- ${PWD}/sharry.conf:/opt/sharry.conf
depends_on:
- db
networks:
- web
- sharry
labels:
- traefik.http.routers.sharry.rule=Host(`share.jafner.net`)
- traefik.http.routers.sharry.tls.certresolver=lets-encrypt
db:
image: postgres:14.2
container_name: sharry_db
networks:
- sharry
volumes:
- $DOCKER_DATA:/var/lib/postgresql/data/
environment:
- POSTGRES_USER=dbuser
- POSTGRES_PASSWORD=dbpass
- POSTGRES_DB=dbname
volumes:
postgres_data:
networks:
sharry:
web:
external: true

View File

@ -1,32 +0,0 @@
sharry.restserver {
base-url = "http://localhost:9090"
bind {
address = "0.0.0.0"
port = 9090
}
backend {
auth {
fixed.enabled = true ## enabled admin:admin access
}
jdbc {
url = "jdbc:postgresql://db:5432/dbname"
user = "dbuser"
password = "dbpass"
}
signup {
mode = "open"
invite-time = "14 days"
invite-password = "generate-invite"
}
share {
max-size = "50G"
}
}
}