| ... | ... | @@ -30,9 +30,8 @@ Before executing the above steps, please make sure that you comply with the belo |
|
|
|
- You have access to the following [materials](https://drive.google.com/drive/folders/1MSr2KryZ6jtsm5IfdZ-UP3MX0V5Pe-e9?usp=share_link) (Pmode file template, europe_ap certificate)
|
|
|
|
|
|
|
|
# How to setup
|
|
|
|
## 1 - Docker configuration
|
|
|
|
#### A - Docker compose:
|
|
|
|
If that's the case, access to your server with SSH and then create your **`{DOMIBUS_SERVER_DIRECTORY}`** and inside create `compose.yaml` file with the following:
|
|
|
|
## 1 - Docker Compose
|
|
|
|
Access your server using SSH and create the `**{DOMIBUS_SERVER_DIRECTORY}**`. Inside this directory, create a `compose.yaml` file with the following content:
|
|
|
|
|
|
|
|
```yaml
|
|
|
|
#
|
| ... | ... | @@ -93,21 +92,23 @@ volumes: |
|
|
|
|
|
|
|
```
|
|
|
|
|
|
|
|
Change the **18080** port to the port that you have opened to the internet. We will refer to the port opened to the internet as **{DOMIBUS_PORT}**.
|
|
|
|
> **Note:** If you use a reverse proxy, you need to configure the reverse proxy to forward to the internal port.
|
|
|
|
If necessary, change the **18080** port to the port you have opened to the internet. This port will be referred to as **{DOMIBUS_PORT}**.
|
|
|
|
|
|
|
|
Execute the following commands at the same level of your domibus `compose.yaml`:
|
|
|
|
> Note: If using a reverse proxy, configure it to forward to the internal port.
|
|
|
|
|
|
|
|
Execute the following commands at the same level as your compose.yaml:
|
|
|
|
```shell
|
|
|
|
docker compose up -d
|
|
|
|
docker compose logs -f
|
|
|
|
```
|
|
|
|
It can take between 2-5 minutes to start, after that you will be able to access to your domibus server with the following URL:
|
|
|
|
|
|
|
|
It may take 2-5 minutes to start. Afterward, access your Domibus server using the URL:
|
|
|
|
```url
|
|
|
|
http://{DOMIBUS_HOSTNAME}:{DOMIBUS_PORT}/domibus
|
|
|
|
```
|
|
|
|

|
|
|
|
|
|
|
|
Stop your domibus instance by doing this following command at the same level of your domibus `compose.yaml`:
|
|
|
|
|
|
|
|
Stop your Domibus instance using the following command at the same level as your compose.yaml:
|
|
|
|
```shell
|
|
|
|
docker compose down
|
|
|
|
```
|
| ... | ... | |
| ... | ... | |