mirror of
https://github.com/chevereto/docker.git
synced 2026-05-06 08:57:55 +02:00
82 lines
1.2 KiB
Markdown
82 lines
1.2 KiB
Markdown
# Docker compose
|
|
|
|
> Run all the following commands from the top folder of this repository.
|
|
|
|
Refer to [docker-compose/](../../docker-compose/) directory for all the compose files examples you can use.
|
|
|
|
## Up
|
|
|
|
Run Chevereto, it will be available at [https://localhost:8096](https://localhost:8096) by default:
|
|
|
|
* **arm64v8**
|
|
|
|
```sh
|
|
docker compose \
|
|
-f docker-compose/httpd-php-arm64v8.yml \
|
|
up -d
|
|
```
|
|
|
|
* **amd64**
|
|
|
|
```sh
|
|
docker compose \
|
|
-f docker-compose/httpd-php-amd64.yml \
|
|
up -d
|
|
```
|
|
|
|
## Stop
|
|
|
|
* **arm64v8**
|
|
|
|
```sh
|
|
docker compose \
|
|
-f docker-compose/httpd-php-arm64v8.yml \
|
|
stop
|
|
```
|
|
|
|
* **amd64**
|
|
|
|
```sh
|
|
docker compose \
|
|
-f docker-compose/httpd-php-amd64.yml \
|
|
stop
|
|
```
|
|
|
|
## Start
|
|
|
|
* **arm64v8**
|
|
|
|
```sh
|
|
docker compose \
|
|
-f docker-compose/httpd-php-arm64v8.yml \
|
|
start
|
|
```
|
|
|
|
* **amd64**
|
|
|
|
```sh
|
|
docker compose \
|
|
-f docker-compose/httpd-php-amd64.yml \
|
|
start
|
|
```
|
|
|
|
## Down
|
|
|
|
* **arm64v8**
|
|
|
|
```sh
|
|
docker compose \
|
|
-f docker-compose/httpd-php-arm64v8.yml \
|
|
down
|
|
```
|
|
|
|
* **amd64**
|
|
|
|
```sh
|
|
docker compose \
|
|
-f docker-compose/httpd-php-amd64.yml \
|
|
down
|
|
```
|
|
|
|
**Note**: This won't remove the volumes for persistent data storage.
|