forked from Deuxfleurs/infrastructure
27 lines
465 B
YAML
27 lines
465 B
YAML
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
|
|
|