Uploading Everything

Uploading Every Docker Compose YML file to the Repo
This commit is contained in:
2026-02-12 17:12:19 +02:00
commit fe628b774f
38 changed files with 1273 additions and 0 deletions

18
Baikal/docker-compose.yml Normal file
View File

@@ -0,0 +1,18 @@
# 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