Welcome to mirror list, hosted at ThFree Co, Russian Federation.

docker-compose-ncpdev.yml - github.com/nextcloud/nextcloudpi.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 58dc00de382434b88051291df6c48af208a51cb8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
version: '3'
services:
  nextcloudpi-dev:
    image: ownyourbits/nextcloudpi-x86
    command: "${IP}"
    ports:
     - "80:80"
     - "443:443"
     - "4443:4443"
    volumes:
     - ./ncp-web:/var/www/ncp-web
     - ./etc:/usr/local/etc
     - ./changelog.md:/changelog.md
     - ncdata:/data

volumes:
  ncdata: