Standardize formatting across multiple docker-compose.yml files: convert single quotes to double quotes for ports/args, fix inconsistent newlines at EOF, remove trailing spaces and stray blank lines, and tidy comments. Reformat ListSync healthcheck into a YAML sequence for clarity. Remove the obsolete Immich/docker-compose.yml.old file. These are non-functional cleanup changes to improve consistency and readability.
17 lines
378 B
YAML
17 lines
378 B
YAML
name: linuxserver-nextcloud
|
|
services:
|
|
nextcloud:
|
|
image: linuxserver/nextcloud:latest
|
|
container_name: nextcloud
|
|
environment:
|
|
- PUID=1000
|
|
- PGID=1000
|
|
- TZ=Africa/Tripoli
|
|
volumes:
|
|
- C:\Data\AppData\nextcloud\config:/config
|
|
- C:\Data\AppData\nextcloud\data:/data
|
|
ports:
|
|
- 1443:443
|
|
- 180:80
|
|
restart: unless-stopped
|