2
0
mirror of https://github.com/frappe/frappe_docker.git synced 2024-11-08 14:21:05 +00:00

Merge pull request #260 from frappe/develop

Release Frappe Framework v12.6.2 and ERPNext v12.9.4
This commit is contained in:
Revant Nandgaonkar 2020-06-13 00:15:17 +05:30 committed by GitHub
commit 0489fae441
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 10 additions and 7 deletions

View File

@ -23,9 +23,10 @@ services:
command: sleep infinity
volumes:
- ..:/workspace:cached
working_dir: /workspace/development
ports:
- "8000:8000"
- "9000:9000"
- "8000-8005:8000-8005"
- "9000-9005:9000-9005"
volumes:
mariadb-vol:

View File

@ -113,4 +113,4 @@ RUN bash -c "node --version" \
&& bash -c "npm --version" \
&& bash -c "yarn --version"
EXPOSE 8000 9000 6787
EXPOSE 8000-8005 9000-9005 6787

View File

@ -125,7 +125,8 @@ elif [ "$1" = 'schedule' ]; then
fi
elif [ "$1" = 'new' ]; then
checkConfigExists
checkConnection
if [[ -z "$RUN_AS_ROOT" ]]; then
su frappe -c ". /home/frappe/frappe-bench/env/bin/activate \
&& python /home/frappe/frappe-bench/commands/new.py"

View File

@ -11,7 +11,7 @@ In order to start developing you need to satisfy the following prerequisites:
It is recommended you allocate at least 4GB of RAM to docker:
- [Instructions for Windows](https://docs.docker.com/docker-for-windows/#resources)
- [Instructions for MacOOS](https://docs.docker.com/docker-for-mac/#resources)
- [Instructions for macOS](https://docs.docker.com/docker-for-mac/#resources)
## Bootstrap Containers for development
@ -30,8 +30,8 @@ VSCode should automatically inquire you to install the required extensions, that
- Install Remote - Containers for VSCode
- through command line `code --install-extension ms-vscode-remote.remote-containers`
- clicking on the button at the following link: [Remote - Containers](https://marketplace.visualstudio.com/items?itemName=ms-vscode-remote.remote-containers)
- searching for extension `ms-vscode-remote.remote-containers`
- clicking on the Install button in the Vistual Studio Marketplace: [Remote - Containers](https://marketplace.visualstudio.com/items?itemName=ms-vscode-remote.remote-containers)
- View: Extensions command in VSCode (Windows: Ctrl+Shift+X; macOS: Cmd+Shift+X) then search for extension `ms-vscode-remote.remote-containers`
After the extensions are installed, you can:
@ -244,6 +244,7 @@ EXIT;
In case you don't use VSCode, you may start the containers manually with the following command:
### Running the containers
```shell
docker-compose -f .devcontainer/docker-compose.yml up -d
```