├── .github └── workflows │ └── push-docker.yml ├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── docs └── assets │ └── railway-frappe-arch.excalidraw.png ├── entrypoint.sh ├── mariadb.cnf ├── railway.json ├── railway ├── Dockerfile ├── README.md ├── railway-cmd.sh ├── railway-entrypoint.sh ├── railway-setup.sh ├── temp_nginx.conf └── temp_supervisor.conf ├── scripts └── tag_image.py └── setup_development └── .devcontainer ├── devcontainer.json └── docker-compose.yml /.github/workflows/push-docker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipech/erpnext-docker-debian/HEAD/.github/workflows/push-docker.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipech/erpnext-docker-debian/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipech/erpnext-docker-debian/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipech/erpnext-docker-debian/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipech/erpnext-docker-debian/HEAD/README.md -------------------------------------------------------------------------------- /docs/assets/railway-frappe-arch.excalidraw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipech/erpnext-docker-debian/HEAD/docs/assets/railway-frappe-arch.excalidraw.png -------------------------------------------------------------------------------- /entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipech/erpnext-docker-debian/HEAD/entrypoint.sh -------------------------------------------------------------------------------- /mariadb.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipech/erpnext-docker-debian/HEAD/mariadb.cnf -------------------------------------------------------------------------------- /railway.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipech/erpnext-docker-debian/HEAD/railway.json -------------------------------------------------------------------------------- /railway/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipech/erpnext-docker-debian/HEAD/railway/Dockerfile -------------------------------------------------------------------------------- /railway/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /railway/railway-cmd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipech/erpnext-docker-debian/HEAD/railway/railway-cmd.sh -------------------------------------------------------------------------------- /railway/railway-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipech/erpnext-docker-debian/HEAD/railway/railway-entrypoint.sh -------------------------------------------------------------------------------- /railway/railway-setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipech/erpnext-docker-debian/HEAD/railway/railway-setup.sh -------------------------------------------------------------------------------- /railway/temp_nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipech/erpnext-docker-debian/HEAD/railway/temp_nginx.conf -------------------------------------------------------------------------------- /railway/temp_supervisor.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipech/erpnext-docker-debian/HEAD/railway/temp_supervisor.conf -------------------------------------------------------------------------------- /scripts/tag_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipech/erpnext-docker-debian/HEAD/scripts/tag_image.py -------------------------------------------------------------------------------- /setup_development/.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipech/erpnext-docker-debian/HEAD/setup_development/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /setup_development/.devcontainer/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipech/erpnext-docker-debian/HEAD/setup_development/.devcontainer/docker-compose.yml --------------------------------------------------------------------------------