insert bare sources nextcloud postgres

master
Peter Babič 3 years ago
parent ce0cab277d
commit dc77b684ae
Signed by: peter.babic
GPG Key ID: 4BB075BC1884BA40
  1. 5
      README.md
  2. 36
      install-nextcloud-onlyoffice-postgres/docker-compose.yml

@ -1,5 +1,4 @@
# Working sources
This folder contains working sources for posts that contain one. Posts
reference sources at the end while sources reference the post at the
beginning.
This folder contains working sources for posts that contain one. Most
directories contain a full example with a README file.

@ -0,0 +1,36 @@
version: "3"
services:
app:
container_name: app-server
image: nextcloud:fpm
restart: always
expose:
- "80"
- "9000"
volumes:
- app_data:/var/www/html
onlyoffice-document-server:
container_name: onlyoffice-document-server
image: onlyoffice/documentserver:latest
restart: always
expose:
- "80"
- "443"
volumes:
- document_data:/var/www/onlyoffice/Data
- document_log:/var/log/onlyoffice
nginx:
container_name: nginx-server
image: nginx
restart: always
ports:
- 80:80
- 443:443
volumes:
- ./nginx.conf:/etc/nginx/nginx.conf
- app_data:/var/www/html
volumes:
document_data:
document_log:
app_data:
mysql_data:
Loading…
Cancel
Save