JustPaste.it

version: "3"

services:
  backend:
    image: frappe/erpnext:latest
    platform: linux/arm64
    networks:
      - frappe_network
    deploy:
      restart_policy:
        condition: on-failure
    volumes:
      - sites:/home/serverDCF/ERPNext/runningApps/frappe-bench/sites
      - logs:/home/serverDCF/ERPNext/runningApps/frappe-bench/logs
    environment:
      DB_HOST: ${DB_HOST}
      DB_PORT: ${DB_PORT}
      MYSQL_ROOT_PASSWORD: admin
      MARIADB_ROOT_PASSWORD: admin

  configurator:
    image: frappe/erpnext:latest
    platform: linux/arm64
    networks:
      - frappe_network
    deploy:
      restart_policy:
        condition: none
    entrypoint:
      - bash
      - -c
    command:
      - >
        ls -1 apps > sites/apps.txt;
        bench set-config -g db_host ${DB_HOST};
        bench set-config -gp db_port ${DB_PORT};
        bench set-config -g redis_cache "redis://${REDIS_CACHE};
        bench set-config -g redis_queue "redis://${REDIS_QUEUE};
        bench set-config -g redis_socketio "redis://${REDIS_QUEUE};
        bench set-config -gp socketio_port ${SOCKETIO_PORT};
    environment:
      DB_HOST: ${DB_HOST}
      DB_PORT: ${DB_PORT}
      REDIS_CACHE: ${REDIS_CACHE}
      REDIS_QUEUE: ${REDIS_QUEUE}
      SOCKETIO_PORT: ${SOCKETIO_PORT}
    volumes:
      - sites:/home/serverDCF/ERPNext/runningApps/frappe-bench/sites
      - logs:/home/serverDCF/ERPNext/runningApps/frappe-bench/logs

  create-site:
    image: frappe/erpnext:latest
    platform: linux/arm64
    networks:
      - frappe_network
    deploy:
      restart_policy:
        condition: none
    volumes:
      - sites:/home/serverDCF/ERPNext/runningApps/frappe-bench/sites
      - logs:/home/serverDCF/ERPNext/runningApps/frappe-bench/logs
    entrypoint:
      - bash
      - -c
    command:
      - >
        wait-for-it -t 120 db:8982;
        wait-for-it -t 120 redis-cache:6379;
        wait-for-it -t 120 redis-queue:6379;
        export start=`date +%s`;
        until [[ -n `grep -hs ^ sites/common_site_config.json | jq -r ".db_host // empty"` ]] && \
          [[ -n `grep -hs ^ sites/common_site_config.json | jq -r ".redis_cache // empty"` ]] && \
          [[ -n `grep -hs ^ sites/common_site_config.json | jq -r ".redis_queue // empty"` ]];
        do
          echo "Waiting for sites/common_site_config.json to be created";
          sleep 5;
          if (( `date +%s`-start > 120 )); then
            echo "could not find sites/common_site_config.json with required keys";
            exit 1
          fi
        done;
        echo "sites/common_site_config.json found";
        bench new-site --mariadb-user-host-login-scope='%' --admin-password=admin --db-root-username=root --db-root-password=admin --install-app erpnext --set-default frontend;

  db:
    image: mariadb:10.6
    platform: linux/arm64
    networks:
      - frappe_network
    healthcheck:
      test: mysqladmin ping -h localhost --password=admin
      interval: 1s
      retries: 20
    deploy:
      restart_policy:
        condition: on-failure
    command:
      - --character-set-server=utf8mb4
      - --collation-server=utf8mb4_unicode_ci
      - --skip-character-set-client-handshake
      - --skip-innodb-read-only-compressed # Temporary fix for MariaDB 10.6
    environment:
      MYSQL_ROOT_PASSWORD: admin
      MARIADB_ROOT_PASSWORD: admin
    volumes:
      - /mnt/disk/ERPnext/db-data:/var/lib/mysql

  frontend:
    image: frappe/erpnext:latest
    platform: linux/arm64
    networks:
      - frappe_network
    depends_on:
      - websocket
    deploy:
      restart_policy:
        condition: on-failure
    command:
      - nginx-entrypoint.sh
    environment:
      BACKEND: backend:8000
      FRAPPE_SITE_NAME_HEADER: ${FRAPPE_SITE_NAME_HEADER}
      SOCKETIO: websocket:${SOCKETIO_PORT}
      UPSTREAM_REAL_IP_ADDRESS: ${UPSTREAM_REAL_IP_ADDRESS}
      UPSTREAM_REAL_IP_HEADER: ${UPSTREAM_REAL_IP_HEADER}
      UPSTREAM_REAL_IP_RECURSIVE: ${UPSTREAM_REAL_IP_RECURSIVE}
      PROXY_READ_TIMEOUT: ${PROXY_READ_TIMEOUT}
      CLIENT_MAX_BODY_SIZE: ${CLIENT_MAX_BODY_SIZE}
    volumes:
      - sites:/home/serverDCF/ERPNext/runningApps/frappe-bench/sites
      - logs:/home/serverDCF/ERPNext/runningApps/frappe-bench/logs
    ports:
      - ${HTTP_PUBLISH_PORT}:80

  queue-long:
    image: frappe/erpnext:latest
    platform: linux/arm64
    networks:
      - frappe_network
    deploy:
      restart_policy:
        condition: on-failure
    command:
      - bench
      - worker
      - --queue
      - long,default,short
    volumes:
      - sites:/home/serverDCF/ERPNext/runningApps/frappe-bench/sites
      - logs:/home/serverDCF/ERPNext/runningApps/frappe-bench/logs

  queue-short:
    image: frappe/erpnext:latest
    platform: linux/arm64
    networks:
      - frappe_network
    deploy:
      restart_policy:
        condition: on-failure
    command:
      - bench
      - worker
      - --queue
      - short,default
    volumes:
      - sites:/home/serverDCF/ERPNext/runningApps/frappe-bench/sites
      - logs:/home/serverDCF/ERPNext/runningApps/frappe-bench/logs

  redis-queue:
    image: redis:6.2-alpine
    platform: linux/arm64
    networks:
      - frappe_network
    deploy:
      restart_policy:
        condition: on-failure
    volumes:
      - /mnt/disk/ERPnext/redis-queue-data:/data

  redis-cache:
    image: redis:6.2-alpine
    platform: linux/arm64
    networks:
      - frappe_network
    deploy:
      restart_policy:
        condition: on-failure

  scheduler:
    image: frappe/erpnext:latest
    platform: linux/arm64
    networks:
      - frappe_network
    deploy:
      restart_policy:
        condition: on-failure
    command:
      - bench
      - schedule
    volumes:
      - sites:/home/serverDCF/ERPNext/runningApps/frappe-bench/sites
      - logs:/home/serverDCF/ERPNext/runningApps/frappe-bench/logs

  websocket:
    image: frappe/erpnext:latest
    platform: linux/arm64
    networks:
      - frappe_network
    deploy:
      restart_policy:
        condition: on-failure
    command:
      - node
      - /home/serverDCF/ERPNext/runningApps/frappe-bench/apps/frappe/socketio.js
    volumes:
      - sites:/home/serverDCF/ERPNext/runningApps/frappe-bench/sites
      - logs:/home/serverDCF/ERPNext/runningApps/frappe-bench/logs

volumes:
  db-data:
  redis-queue-data:
  sites:
  logs:

networks:
  frappe_network:
    driver: bridge