Also rename docker-compose.yml to compose.yaml
Signed-off-by: Nicolas De Loof <nicolas.deloof@gmail.com>
This commit is contained in:
parent
30f613f1a9
commit
40ba972d9b
@ -4,7 +4,7 @@
|
||||
Project structure:
|
||||
```
|
||||
.
|
||||
├── docker compose.yml
|
||||
├── compose.yaml
|
||||
├── app
|
||||
├── Dockerfile
|
||||
├── requirements.txt
|
||||
@ -12,7 +12,7 @@ Project structure:
|
||||
|
||||
```
|
||||
|
||||
[_docker-compose.yml_](docker-compose.yml)
|
||||
[_compose.yaml_](compose.yaml)
|
||||
```
|
||||
services:
|
||||
web:
|
||||
|
@ -4,10 +4,10 @@
|
||||
Project structure:
|
||||
```
|
||||
.
|
||||
└── docker compose.yml
|
||||
└── compose.yaml
|
||||
```
|
||||
|
||||
[_docker-compose.yml_](docker-compose.yml)
|
||||
[_compose.yaml_](compose.yaml)
|
||||
```
|
||||
services:
|
||||
elasticsearch:
|
||||
|
@ -9,11 +9,11 @@ Project structure:
|
||||
├── Dockerfile
|
||||
├── README.md
|
||||
├── app.py
|
||||
├── docker compose.yml
|
||||
├── compose.yaml
|
||||
└── requirements.txt
|
||||
```
|
||||
|
||||
[_docker-compose.yml_](docker-compose.yml)
|
||||
[_compose.yaml_](compose.yaml)
|
||||
|
||||
```
|
||||
services:
|
||||
|
@ -29,7 +29,7 @@ the same port of the host as specified in the compose file.
|
||||
## Deploy with docker compose
|
||||
|
||||
```
|
||||
$ docker$ compose up -d
|
||||
$ docker compose up -d
|
||||
Creating network "gitea-postgres_default" with the default driver
|
||||
Creating gitea-postgres_db_1 ... done
|
||||
Creating gitea-postgres_gitea_1 ... done
|
||||
|
@ -30,7 +30,7 @@ port 80 of the host as specified in the compose file.
|
||||
## Deploy with docker compose
|
||||
|
||||
```
|
||||
$ docker$ compose up -d
|
||||
$ docker compose up -d
|
||||
Creating network "nextcloud-postgres_default" with the default driver
|
||||
Creating volume "nextcloud-postgres_nc_data" with default driver
|
||||
Pulling nc (nextcloud:apache)...
|
||||
|
@ -35,7 +35,7 @@ port 80 of the host as specified in the compose file.
|
||||
## Deploy with docker compose
|
||||
|
||||
```
|
||||
$ docker$ compose up -d
|
||||
$ docker compose up -d
|
||||
Creating network "nextcloud-redis-mariadb_redisnet" with the default driver
|
||||
Creating network "nextcloud-redis-mariadb_dbnet" with the default driver
|
||||
Creating volume "nextcloud-redis-mariadb_nc_data" with default driver
|
||||
|
@ -7,7 +7,7 @@ Project structure:
|
||||
├── backend
|
||||
│ ├── Dockerfile
|
||||
│ └── main.go
|
||||
├── docker compose.yml
|
||||
├── compose.yaml
|
||||
├── frontend
|
||||
│ ├── Dockerfile
|
||||
│ └── nginx.conf
|
||||
|
@ -6,7 +6,7 @@ Project structure:
|
||||
```
|
||||
.
|
||||
├── README.md
|
||||
├── docker compose.yml
|
||||
├── compose.yaml
|
||||
├── nginx
|
||||
│ ├── Dockerfile
|
||||
│ └── nginx.conf
|
||||
@ -19,7 +19,7 @@ Project structure:
|
||||
|
||||
|
||||
```
|
||||
[_docker-compose.yml_](docker-compose.yml)
|
||||
[_compose.yaml_](compose.yaml)
|
||||
```
|
||||
redis:
|
||||
image: 'redislabs/redismod'
|
||||
|
@ -4,7 +4,7 @@
|
||||
Project structure:
|
||||
```
|
||||
.
|
||||
├── docker compose.yml
|
||||
├── compose.yaml
|
||||
├── grafana
|
||||
│ └── datasource.yml
|
||||
├── prometheus
|
||||
@ -12,7 +12,7 @@ Project structure:
|
||||
└── README.md
|
||||
```
|
||||
|
||||
[_docker-compose.yml_](docker-compose.yml)
|
||||
[_compose.yaml_](compose.yaml)
|
||||
```
|
||||
services:
|
||||
prometheus:
|
||||
|
@ -30,7 +30,7 @@
|
||||
- You want to use Docker for local development (i.e. never need to install node/npm on host) and have dev and prod Docker images be as close as possible.
|
||||
- You don't want to loose fidelity in your dev workflow. You want a easy environment setup, using local editors, node debug/inspect, local code repo, while node server runs in a container.
|
||||
- You use `docker-compose` for local development only (docker-compose was never intended to be a production deployment tool anyway).
|
||||
- The `docker-compose.yml` is not meant for `docker stack deploy` in Docker Swarm, it's meant for happy local development. Use `docker-stack.yml` for Swarm.
|
||||
- The `compose.yaml` is not meant for `docker stack deploy` in Docker Swarm, it's meant for happy local development. Use `docker-stack.yml` for Swarm.
|
||||
|
||||
|
||||
### Getting Started
|
||||
|
@ -5,7 +5,7 @@
|
||||
Project structure:
|
||||
|
||||
```
|
||||
├── docker compose.yml
|
||||
├── compose.yaml
|
||||
├── Dockerfile
|
||||
├── .dockerignore
|
||||
├── .nginx
|
||||
|
@ -7,7 +7,7 @@ Project structure:
|
||||
├── backend
|
||||
│ ├── Dockerfile
|
||||
│ └── main.go
|
||||
├── docker compose.yml
|
||||
├── compose.yaml
|
||||
└── README.md
|
||||
```
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user