changed docker exec to docker-compose exec

This commit is contained in:
2023-11-25 14:10:29 +01:00
parent 1722c4f841
commit 93733e9e0e
7 changed files with 13 additions and 15 deletions

View File

@@ -20,19 +20,19 @@ docker-compose -p akaunting up -d
### get logs
```bash
docker exec -it akaunting tail -n 300 storage/logs/laravel.log
docker-compose exec -it akaunting tail -n 300 storage/logs/laravel.log
```
### enter akaunting container
```bash
docker exec -it akaunting bash
docker-compose exec -it akaunting bash
```
### enter database container
```bash
docker exec -it akaunting-db /bin/mysql -u admin --password=$akaunting_db_password akaunting
docker-compose exec -it akaunting-db /bin/mysql -u admin --password=$akaunting_db_password akaunting
```
## manuel update