You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
448 B
25 lines
448 B
version: "3"
|
|
|
|
networks:
|
|
outside:
|
|
driver: bridge
|
|
database:
|
|
driver: bridge
|
|
external: true
|
|
|
|
services:
|
|
nc:
|
|
image: nextcloud:apache
|
|
container_name: nextcloud
|
|
environment:
|
|
- POSTGRES_HOST=postgres
|
|
- POSTGRES_PASSWORD=B33rb33r!
|
|
- POSTGRES_DB=nextcloud
|
|
- POSTGRES_USER=nextcloud
|
|
ports:
|
|
- 8104:80
|
|
restart: always
|
|
volumes:
|
|
- ./nc_data:/var/www/html
|
|
networks:
|
|
- database |