diff --git a/installation/docker-compose-custom.yml b/installation/docker-compose-custom.yml index 5a7c3696..67833600 100644 --- a/installation/docker-compose-custom.yml +++ b/installation/docker-compose-custom.yml @@ -28,7 +28,7 @@ services: - frappe-worker-long - frappe-worker-short volumes: - - ./sites:/var/www/html/sites:rw + - sites-vol:/var/www/html/sites:rw - assets-vol:/assets:rw [app]-python: @@ -44,7 +44,7 @@ services: - REDIS_SOCKETIO=redis-socketio:6379 - SOCKETIO_PORT=9000 volumes: - - ./sites:/home/frappe/frappe-bench/sites:rw + - sites-vol:/home/frappe/frappe-bench/sites:rw - assets-vol:/home/frappe/frappe-bench/sites/assets:rw frappe-socketio: @@ -55,7 +55,7 @@ services: links: - redis-socketio volumes: - - ./sites:/home/frappe/frappe-bench/sites:rw + - sites-vol:/home/frappe/frappe-bench/sites:rw frappe-worker-default: image: [app]-worker @@ -68,7 +68,7 @@ services: - redis-queue - redis-cache volumes: - - ./sites:/home/frappe/frappe-bench/sites:rw + - sites-vol:/home/frappe/frappe-bench/sites:rw frappe-worker-short: image: [app]-worker @@ -83,7 +83,7 @@ services: - redis-queue - redis-cache volumes: - - ./sites:/home/frappe/frappe-bench/sites:rw + - sites-vol:/home/frappe/frappe-bench/sites:rw frappe-worker-long: image: [app]-worker @@ -98,7 +98,7 @@ services: - redis-queue - redis-cache volumes: - - ./sites:/home/frappe/frappe-bench/sites:rw + - sites-vol:/home/frappe/frappe-bench/sites:rw frappe-schedule: image: [app]-worker @@ -111,7 +111,8 @@ services: - redis-queue - redis-cache volumes: - - ./sites:/home/frappe/frappe-bench/sites:rw + - sites-vol:/home/frappe/frappe-bench/sites:rw volumes: assets-vol: + sites-vol: diff --git a/installation/docker-compose-erpnext.yml b/installation/docker-compose-erpnext.yml index 8e2cbd9e..cecea14d 100644 --- a/installation/docker-compose-erpnext.yml +++ b/installation/docker-compose-erpnext.yml @@ -25,7 +25,7 @@ services: - frappe-worker-long - frappe-worker-short volumes: - - ./sites:/var/www/html/sites:rw + - sites-vol:/var/www/html/sites:rw - assets-vol:/assets:rw erpnext-python: @@ -39,7 +39,7 @@ services: - SOCKETIO_PORT=9000 - AUTO_MIGRATE=1 volumes: - - ./sites:/home/frappe/frappe-bench/sites:rw + - sites-vol:/home/frappe/frappe-bench/sites:rw - assets-vol:/home/frappe/frappe-bench/sites/assets:rw frappe-socketio: @@ -50,7 +50,7 @@ services: links: - redis-socketio volumes: - - ./sites:/home/frappe/frappe-bench/sites:rw + - sites-vol:/home/frappe/frappe-bench/sites:rw frappe-worker-default: image: frappe/erpnext-worker:${VERSION} @@ -63,7 +63,7 @@ services: - redis-queue - redis-cache volumes: - - ./sites:/home/frappe/frappe-bench/sites:rw + - sites-vol:/home/frappe/frappe-bench/sites:rw frappe-worker-short: image: frappe/erpnext-worker:${VERSION} @@ -78,7 +78,7 @@ services: - redis-queue - redis-cache volumes: - - ./sites:/home/frappe/frappe-bench/sites:rw + - sites-vol:/home/frappe/frappe-bench/sites:rw frappe-worker-long: image: frappe/erpnext-worker:${VERSION} @@ -93,7 +93,7 @@ services: - redis-queue - redis-cache volumes: - - ./sites:/home/frappe/frappe-bench/sites:rw + - sites-vol:/home/frappe/frappe-bench/sites:rw frappe-schedule: image: frappe/erpnext-worker:${VERSION} @@ -106,7 +106,8 @@ services: - redis-queue - redis-cache volumes: - - ./sites:/home/frappe/frappe-bench/sites:rw + - sites-vol:/home/frappe/frappe-bench/sites:rw volumes: assets-vol: + sites-vol: diff --git a/installation/docker-compose-frappe.yml b/installation/docker-compose-frappe.yml index f8365225..da44298f 100644 --- a/installation/docker-compose-frappe.yml +++ b/installation/docker-compose-frappe.yml @@ -25,7 +25,7 @@ services: - frappe-worker-long - frappe-worker-short volumes: - - ./sites:/var/www/html/sites:rw + - sites-vol:/var/www/html/sites:rw - assets-vol:/assets:rw frappe-python: @@ -39,7 +39,7 @@ services: - SOCKETIO_PORT=9000 - AUTO_MIGRATE=1 volumes: - - ./sites:/home/frappe/frappe-bench/sites:rw + - sites-vol:/home/frappe/frappe-bench/sites:rw - assets-vol:/home/frappe/frappe-bench/sites/assets:rw frappe-socketio: @@ -50,7 +50,7 @@ services: links: - redis-socketio volumes: - - ./sites:/home/frappe/frappe-bench/sites:rw + - sites-vol:/home/frappe/frappe-bench/sites:rw frappe-worker-default: image: frappe/frappe-worker:${VERSION} @@ -63,7 +63,7 @@ services: - redis-queue - redis-cache volumes: - - ./sites:/home/frappe/frappe-bench/sites:rw + - sites-vol:/home/frappe/frappe-bench/sites:rw frappe-worker-short: image: frappe/frappe-worker:${VERSION} @@ -78,7 +78,7 @@ services: - redis-queue - redis-cache volumes: - - ./sites:/home/frappe/frappe-bench/sites:rw + - sites-vol:/home/frappe/frappe-bench/sites:rw frappe-worker-long: image: frappe/frappe-worker:${VERSION} @@ -93,7 +93,7 @@ services: - redis-queue - redis-cache volumes: - - ./sites:/home/frappe/frappe-bench/sites:rw + - sites-vol:/home/frappe/frappe-bench/sites:rw frappe-schedule: image: frappe/frappe-worker:${VERSION} @@ -106,7 +106,8 @@ services: - redis-queue - redis-cache volumes: - - ./sites:/home/frappe/frappe-bench/sites:rw + - sites-vol:/home/frappe/frappe-bench/sites:rw volumes: assets-vol: + sites-vol: