Co-authored-by: Davide Polonio <poloniodavide@gmail.com> Reviewed-on: #20pull/21/head
parent
5d944868f5
commit
d3ecca769c
|
@ -0,0 +1 @@
|
|||
client_max_body_size 15g;
|
|
@ -12,6 +12,7 @@ services:
|
|||
- nginx_cert:/etc/nginx/certs
|
||||
- nginx_vhost:/etc/nginx/vhost.d
|
||||
- nginx_html:/usr/share/nginx/html
|
||||
- ./client_max_body_size.conf:/etc/nginx/conf.d/client_max_body_size.conf:ro
|
||||
labels:
|
||||
- "com.github.jrcs.letsencrypt_nginx_proxy_companion.nginx_proxy"
|
||||
networks:
|
||||
|
|
|
@ -0,0 +1,37 @@
|
|||
version: '3.9'
|
||||
|
||||
services:
|
||||
gokapi:
|
||||
image: f0rc3/gokapi:v1.7.1
|
||||
restart: unless-stopped
|
||||
volumes:
|
||||
- data:/app/data
|
||||
- config:/app/config
|
||||
env_file:
|
||||
- .env
|
||||
networks:
|
||||
- proxy
|
||||
logging:
|
||||
driver: "json-file"
|
||||
options:
|
||||
max-size: "1m"
|
||||
max-file: "1"
|
||||
|
||||
volumes:
|
||||
data:
|
||||
driver: local
|
||||
driver_opts:
|
||||
type: none
|
||||
o: bind
|
||||
device: "/srv/docker/send/data"
|
||||
config:
|
||||
driver: local
|
||||
driver_opts:
|
||||
type: none
|
||||
o: bind
|
||||
device: "/srv/docker/send/config"
|
||||
|
||||
networks:
|
||||
proxy:
|
||||
external: true
|
||||
|
Loading…
Reference in New Issue