Files
Docker-Chevereto/docs/console/docker-compose.md
2021-10-07 19:04:09 -03:00

949 B

Docker compose

Run all the following commands from the top folder of this repository.

Up

Run Chevereto, it will be available at https://localhost:8096 by default:

  • arm64v8
docker compose \
    -f httpd-php-arm64v8.yml \
    up -d
  • amd64
docker compose \
    -f httpd-php-amd64.yml \
    up -d

Stop

  • arm64v8
docker compose \
    -f httpd-php-arm64v8.yml \
    stop
  • amd64
docker compose \
    -f httpd-php-amd64.yml \
    stop

Start

  • arm64v8
docker compose \
    -f httpd-php-arm64v8.yml \
    start
  • amd64
docker compose \
    -f httpd-php-amd64.yml \
    start

Down

  • arm64v8
docker compose \
    -f httpd-php-arm64v8.yml \
    down
  • amd64
docker compose \
    -f httpd-php-amd64.yml \
    down

Note: This won't remove the volumes for persistent data storage.