Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Minor typo fix. #11

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,11 @@ After the repository has been cloned follow the steps detailed below.
* Copy the archive of the ADempiere distribution you want to deploy in the
container in the _postgresql/dist_ directory (es.: ADempiere_390LTS.tar.gz for current
390 release)
```shell
cd postgresql/dist
wget https://github.com/adempiere/adempiere/releases/download/3.9.0/Adempiere_390LTS.tar.gz
cd ..
```
* Open a terminal window.
* Go to the _adempiere-docker/postgresql_ directory.
* From the command prompt, type the following command:
Expand All @@ -143,7 +148,7 @@ docker-compose up -d

This command starts the services in daemon mode. The current docker-compose.yml is a sample of how to make things work and contains a very basic configuration.

Notice that the first time you run the image, it will take a considerable aomunt of time to start the ADempiere container because of the time to initialize the system starting from default ADempiere seed. This initialization phase is made just the very first time the container runs. I suggest you to keep an eye on how the things are progressing by checking the container's logs. To check container logs, type the following command on a termina window:
Notice that the first time you run the image, it will take a considerable amount of time to start the ADempiere container because of the time to initialize the system starting from default ADempiere seed. This initialization phase is made just the very first time the container runs. I suggest you to keep an eye on how the things are progressing by checking the container's logs. To check container logs, type the following command on a termina window:

```
docker-compose logs -f adempiere
Expand Down