chevereto-free/docs/COMPOSE.md
2021-11-27 12:24:29 -03:00

776 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

Start

Run this command to start Chevereto if stopped.

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

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