mirror of
https://github.com/nextcloud/docker.git
synced 2025-03-19 04:45:09 +01:00
31 lines
576 B
YAML
31 lines
576 B
YAML
|
version: '2'
|
||
|
|
||
|
volumes:
|
||
|
nextcloud:
|
||
|
db:
|
||
|
|
||
|
services:
|
||
|
db:
|
||
|
image: postgres:15.3-alpine3.18
|
||
|
restart: always
|
||
|
volumes:
|
||
|
- db:/var/lib/postgresql/data:Z
|
||
|
environment:
|
||
|
- POSTGRES_PASSWORD=TheGibson
|
||
|
- POSTGRES_DB=nextcloud
|
||
|
- POSTGRES_USER=nextcloud
|
||
|
|
||
|
nc:
|
||
|
image: nextcloud:27.0.0-apache
|
||
|
restart: always
|
||
|
ports:
|
||
|
- 8080:80
|
||
|
links:
|
||
|
- db
|
||
|
volumes:
|
||
|
- nextcloud:/var/www/html
|
||
|
environment:
|
||
|
- POSTGRES_PASSWORD=TheGibson
|
||
|
- POSTGRES_DB=nextcloud
|
||
|
- POSTGRES_USER=nextcloud
|
||
|
- POSTGRES_HOST=db
|