chevereto-free/docs/COMPOSE.md

43 lines
632 B
Markdown

# Compose
Compose file: [httpd-php.yml](../httpd-php.yml)
## Up
Run this command to spawn (start) Chevereto-Free.
```sh
docker-compose \
-p chevereto-free \
-f httpd-php.yml \
up --abort-on-container-exit
```
[localhost:8810](http://localhost:8810)
## Stop
Run this command to stop Chevereto-Free.
```sh
docker-compose \
-p chevereto-free \
-f httpd-php.yml \
stop
```
### Down (uninstall)
Run this command to down Chevereto (stop containers, remove networks and volumes created by it).
```sh
docker-compose \
-p chevereto-free \
-f httpd-php.yml \
down --volumes
```
## Logs
`todo`