0
0
Fork 0
mirror of https://github.com/nextcloud/docker.git synced 2025-03-18 12:25:09 +01:00
nextcloud-docker/energy-tests/compose-postgres.yml

31 lines
576 B
YAML
Raw Normal View History

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:
2023-12-01 10:21:34 +01:00
image: nextcloud:27.1.4-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