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