From 4d46e7fef21d0e7918a0f6dd140ce06b4ca07ea7 Mon Sep 17 00:00:00 2001 From: Gabriel Carneiro Date: Sun, 24 Nov 2024 17:20:05 -0300 Subject: [PATCH] first commit --- docker-compose.yml | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 docker-compose.yml diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 0000000..658f768 --- /dev/null +++ b/docker-compose.yml @@ -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: