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

Fix typos :D #2

Merged
merged 1 commit into from
Oct 25, 2024
Merged
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
18 changes: 9 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,10 +46,10 @@ Contains configuration files for various services.
#### src
The base directory where the application source code is located. Mounted to `/var/www/html` within containers.

## docker-compose.yml
## docker-compose.yml [↩️](#table-of-contents)
Defines services, volumes, networks, and mounts used in the Docker setup.

Check the complete [Docker Cheat Sheet](./docker-cheat-sheet.md) for useful Docker commands.
Check the complete [Docker Cheat Sheet](./docker-cheats.md) for useful Docker commands.

#### Volumes
Volumes are used to persist data across container restarts:
Expand Down Expand Up @@ -77,7 +77,7 @@ Your **SSH keys** are mounted from `~/.ssh:/var/www/.ssh:cached`. This ensures t

Finally, the **known hosts file** is mounted from `~/.ssh/known_hosts:/var/www/.ssh/known_hosts:cached`. This provides a list of SSH hosts your machine has connected to, ensuring smoother SSH operations within the container.

## app
## app [↩️](#table-of-contents)
Nginx is configured to serve PHP applications, utilizing FastCGI for processing PHP files. The service supports both HTTP and HTTPS traffic.

1. **User and Permissions**
Expand All @@ -89,7 +89,7 @@ Nginx is configured to serve PHP applications, utilizing FastCGI for processing
4. **Logs**
Access and error logs are located at `/var/log/nginx/access.log` and `/var/log/nginx/error.log`, respectively. Monitor these logs for troubleshooting and performance analysis.

## phpfpm
## phpfpm [↩️](#table-of-contents)

Installed PHP extensions are: `bcmath`, `bz2`, `calendar`, `exif`, `ftp`, `gd`, `gettext`, `intl`, `mbstring`, `mysqli`, `opcache`, `pcntl`, `pdo_mysql`, `soap`, `sockets`, `sodium`, `sysvmsg`, `sysvsem`, `sysvshm`, `xsl`, `zip`

Expand All @@ -101,7 +101,7 @@ Installed PHP extensions are: `bcmath`, `bz2`, `calendar`, `exif`, `ftp`, `gd`,
- nano and vi/vim! for sure ;)


## supervisor
## supervisor [↩️](#table-of-contents)

The required background processes are the following:

Expand Down Expand Up @@ -148,7 +148,7 @@ oro_web_socket RUNNING pid 5163, uptime 0:00:0
```


## postgres
## postgres [↩️](#table-of-contents)
This section covers the PostgreSQL database activities.

To check if the database is running, log into the database:
Expand Down Expand Up @@ -178,7 +178,7 @@ gunzip < path/to/your/file.sql.gz | docker exec -i <container-id> psql -U root -
docker exec -t <container-id> pg_dump -U root -d dev > path/to/your/file.sql
```

## pgadmin
## pgadmin [↩️](#table-of-contents)

Access pgAdmin at:
```
Expand All @@ -192,7 +192,7 @@ http://localhost:1435
You'll need to create a new server in pgAdmin to access the database. For database details, please refer to the [postgres](#postgres) section.


## rabbitmq
## rabbitmq [↩️](#table-of-contents)

RabbitMQ is a message broker that facilitates communication between different components of the Oro application. It enables asynchronous processing of tasks, allowing for efficient handling of background jobs, notifications, and real-time messaging between services.

Expand All @@ -211,7 +211,7 @@ To check emails using MailCatcher, open your web browser and navigate to:
http://localhost:1080
```

## Credits
## Credits [↩️](#table-of-contents)

Some parts of this setup, especially the Elasticsearch configuration and the concepts of file management and mounts, are adapted from [Markshust's Docker Setup for Magento](https://github.com/markshust/docker-magento).

Expand Down