aboutsummaryrefslogblamecommitdiff
path: root/app/nextcloud/integration/docker-compose.yml
blob: 7ba090b6005f735aa966aef68de6787252f5d62d (plain) (tree)


























                                            
version: '3.4'
services:
  php:
    image: lxpz/deuxfleurs_nextcloud_amd64:8
    depends_on:
      - bottin
      - postgres
    ports:
      - "80:80"

  postgres:
    image: postgres:9.6.19
    environment:
      - POSTGRES_DB=nextcloud
      - POSTGRES_USER=nextcloud
      - POSTGRES_PASSWORD=nextcloud

  bottin:
    image: lxpz/bottin_amd64:14
    depends_on:
      - consul
    volumes:
      - ./bottin.json:/config.json

  consul:
    image: consul:1.8.4