chevereto-free/docs/COMPOSE.md
Rodolfo Berrios 1728229fab
docker docs
2021-11-20 11:34:11 -03:00

632 B

Compose

Compose file: httpd-php.yml

Up

Run this command to spawn (start) Chevereto-Free.

docker-compose \
    -p chevereto-free \
    -f httpd-php.yml \
    up --abort-on-container-exit

localhost:8810

Stop

Run this command to stop Chevereto-Free.

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).

docker-compose \
    -p chevereto-free \
    -f httpd-php.yml \
    down --volumes

Logs

todo