Skip to content
Snippets Groups Projects
Select Git revision
  • d49fb8672d75fbda2991eebf69ae3be9b261ff3d
  • master default protected
  • gh-pages
  • cluster-autoscaler-release-1.31
  • cluster-autoscaler-release-1.32
  • cluster-autoscaler-release-1.33
  • experimental-cpu-boost
  • addon-resizer-release-1.8
  • cluster-autoscaler-release-1.30
  • copilot/fix-8352
  • vpa-release-1.2
  • vpa-release-1.4
  • vpa-release-1.3
  • cluster-autoscaler-release-1.29
  • revert-8078-wenx/master
  • x13n-patch-11
  • x13n-patch-10
  • x13n-patch-9
  • raywainman-patch-3
  • in-place-updates
  • raywainman-patch-2
  • cluster-autoscaler-chart-9.50.0
  • cluster-autoscaler-chart-9.49.0
  • cluster-autoscaler-1.32.2
  • cluster-autoscaler-1.31.3
  • cluster-autoscaler-1.30.5
  • cluster-autoscaler-chart-9.48.0
  • cluster-autoscaler-chart-9.47.0
  • cluster-autoscaler-1.33.0
  • vertical-pod-autoscaler/v1.4.1
  • vertical-pod-autoscaler-1.4.1
  • vertical-pod-autoscaler/v1.4.0
  • vertical-pod-autoscaler-1.4.0
  • vertical-pod-autoscaler/v1.3.1
  • vertical-pod-autoscaler-1.3.1
  • cluster-autoscaler-chart-9.46.6
  • cluster-autoscaler-chart-9.46.5
  • cluster-autoscaler-chart-9.46.4
  • cluster-autoscaler-1.30.4
  • cluster-autoscaler-1.31.2
  • cluster-autoscaler-1.32.1
41 results

quickstart.md

Blame
  • docker-compose.yml 565 B
    version: '3'
    
    services:
      db:
        image: postgres:alpine
        restart: always
        volumes:
          - db:/var/lib/postgresql/data
        env_file:
          - db.env
    
      app:
        image: nextcloud:fpm-alpine
        restart: always
        volumes:
          - nextcloud:/var/www/html
        environment:
          - POSTGRES_HOST=db
          - POSTGRES_DB=nextcloud
        env_file:
          - db.env
        depends_on:
          - db
    
      web:
        build: ./web
        restart: always
        ports:
          - 8080:80
        volumes:
          - nextcloud:/var/www/html:ro
        depends_on:
          - app
    
    volumes:
      db:
      nextcloud: