Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
arthurcadore authored Nov 21, 2023
1 parent dc9c9aa commit 9f65df0
Showing 1 changed file with 24 additions and 8 deletions.
32 changes: 24 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,9 +52,9 @@ The "&" character creates a process id for the command inputed in, with means th

Once the container is up and running, you can access the application [sig-cloud website](https://sigcloud.incloud.intelbras.com.br/).

By default, the CLI access to the container is closed, so nobody can access it externally, only the application web Page.
By default, the CLI access to the container is closed, so nobody can access it externally, only by the application web Page on cloud.

To access the application command line, first loggin into host device using SSH or another method, then use the command below:
To access the application command line, for debugging, first loggin into host device using SSH or another method, then use the command below:

```
docker exec -it sigCloud-Capacita bash
Expand All @@ -64,17 +64,33 @@ The command above will start a bash process in the application container, that w

To exit from container's command line interface, use the command `exit`.

---
### Logs:

Once the application has started, the `./logs` will be generated by container volume mapping, and the sig-cloud logs will be writing directly to these files. For illustration, in the diagram below (tree command), the new directory and files are exposed.

```
.
├── auth
│   ├── aplicacao
│   └── t
├── docker
│   ├── Dockerfile
│   └── installDocker.sh
├── docker-compose.yml
├── LICENSE
├── logs
│   └── eponadapter.log
├── README.md
└── src
├── eponadapter.jar
└── logs
```
---
### Stop Container:
To stop the running container, use the following command:

```
docker-compose down
```

This command stops and removes the containers, networks, defined in the docker-compose.yml file.

---



0 comments on commit 9f65df0

Please sign in to comment.