mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2024-11-10 15:01:05 +01:00
26 lines
629 B
Markdown
26 lines
629 B
Markdown
# docker akaunting
|
|
## clean up
|
|
### delete all containers
|
|
```bash
|
|
export COMPOSE_HTTP_TIMEOUT=600
|
|
export DOCKER_CLIENT_TIMEOUT=600
|
|
cd /home/administrator/docker-compose/akaunting/ && docker-compose down
|
|
```
|
|
### delete all volumes
|
|
```bash
|
|
docker volume rm akaunting_akaunting-data akaunting_akaunting-db akaunting_akaunting-modules
|
|
```
|
|
|
|
## setup
|
|
```bash
|
|
cd /home/administrator/docker-compose/akaunting/
|
|
export COMPOSE_HTTP_TIMEOUT=600
|
|
export DOCKER_CLIENT_TIMEOUT=600
|
|
AKAUNTING_SETUP=true docker-compose -p akaunting up -d
|
|
docker-compose down
|
|
docker-compose up -d
|
|
```
|
|
|
|
## Further information
|
|
- https://github.com/akaunting/docker
|