Files
Docker-Compose/Baikal/docker-compose.yml
MohandL3G 9cf711fc67 Normalize quoting and whitespace in compose files
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.
2026-02-12 20:44:54 +02:00

19 lines
653 B
YAML

# Docker Compose file for a Baikal server with local mounts instead of Docker volumes
# Before you start docker compose up, make sure that you have prepared
# the local folders to avoid file permission issues with
#
# mkdir -p config Specific/db
# chown -R 101:101 config Specific <- Use this for Nginx
# chown -R 33:33 config Specific <- Use this for Apache httpd
services:
baikal:
image: ckulka/baikal:nginx
restart: unless-stopped
ports:
- "802:80"
volumes:
- D:\Users\MohandL3G\Docker\AppData\baikal\config:/var/www/baikal/config
- D:\Users\MohandL3G\Docker\AppData\baikal\Specific:/var/www/baikal/Specific