aboutsummaryrefslogtreecommitdiff
path: root/app/integration/nextcloud/docker-compose.yml
blob: 7ba090b6005f735aa966aef68de6787252f5d62d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
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