Files
Docker-Compose/Baikal/docker-compose.yml
MohandL3G fe628b774f Uploading Everything
Uploading Every Docker Compose YML file to the Repo
2026-02-12 17:12:19 +02:00

18 lines
652 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