first commit
This commit is contained in:
commit
4d46e7fef2
|
@ -0,0 +1,34 @@
|
||||||
|
version: '3'
|
||||||
|
services:
|
||||||
|
app:
|
||||||
|
container_name: filestash
|
||||||
|
image: machines/filestash
|
||||||
|
restart: always
|
||||||
|
environment:
|
||||||
|
# APPLICATION_URL: https://alice.dcomp.ufsj.edu.br
|
||||||
|
ONLYOFFICE_URL: http://onlyoffice
|
||||||
|
# - ONLYOFFICE_URL=https://alice.ufsj.edu.br/office
|
||||||
|
ports:
|
||||||
|
- "8334:8334"
|
||||||
|
volumes:
|
||||||
|
- filestash:/app/data/state/
|
||||||
|
networks:
|
||||||
|
- filestash
|
||||||
|
|
||||||
|
onlyoffice:
|
||||||
|
container_name: filestash_oods
|
||||||
|
image: onlyoffice/documentserver:7.1
|
||||||
|
restart: always
|
||||||
|
security_opt:
|
||||||
|
- seccomp:unconfined
|
||||||
|
networks:
|
||||||
|
- filestash
|
||||||
|
environment:
|
||||||
|
JWT_ENABLED: "false"
|
||||||
|
ALLOW_PRIVATE_IP_ADDRESS: "true"
|
||||||
|
|
||||||
|
volumes:
|
||||||
|
filestash: {}
|
||||||
|
|
||||||
|
networks:
|
||||||
|
filestash:
|
Loading…
Reference in New Issue