mirror of
https://github.com/nextcloud/docker.git
synced 2025-04-09 14:06:10 +02:00
30 lines
467 B
YAML
30 lines
467 B
YAML
version: '3'
|
|
|
|
services:
|
|
db:
|
|
image: postgres
|
|
restart: always
|
|
volumes:
|
|
- db:/var/lib/postgresql/data
|
|
env_file:
|
|
- db.env
|
|
|
|
app:
|
|
image: nextcloud:apache
|
|
restart: always
|
|
ports:
|
|
- 8080:80
|
|
volumes:
|
|
- nextcloud_html:/var/www/html
|
|
- nextcloud_data:/var/nc_data
|
|
environment:
|
|
- POSTGRES_HOST=db
|
|
env_file:
|
|
- db.env
|
|
depends_on:
|
|
- db
|
|
|
|
volumes:
|
|
db:
|
|
nextcloud_html:
|
|
nextcloud_data:
|