diff --git a/django/README.md b/django/README.md index b4e19ea..2a18733 100644 --- a/django/README.md +++ b/django/README.md @@ -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: diff --git a/django/docker-compose.yml b/django/compose.yaml similarity index 100% rename from django/docker-compose.yml rename to django/compose.yaml diff --git a/elasticsearch-logstash-kibana/README.md b/elasticsearch-logstash-kibana/README.md index e9317b0..9527d05 100644 --- a/elasticsearch-logstash-kibana/README.md +++ b/elasticsearch-logstash-kibana/README.md @@ -4,10 +4,10 @@ Project structure: ``` . -└── docker compose.yml +└── compose.yaml ``` -[_docker-compose.yml_](docker-compose.yml) +[_compose.yaml_](compose.yaml) ``` services: elasticsearch: diff --git a/elasticsearch-logstash-kibana/docker-compose.yml b/elasticsearch-logstash-kibana/compose.yaml similarity index 100% rename from elasticsearch-logstash-kibana/docker-compose.yml rename to elasticsearch-logstash-kibana/compose.yaml diff --git a/fastapi/docker-compose.yml b/fastapi/compose.yaml similarity index 100% rename from fastapi/docker-compose.yml rename to fastapi/compose.yaml diff --git a/flask-redis/README.md b/flask-redis/README.md index 76b4065..e494f03 100644 --- a/flask-redis/README.md +++ b/flask-redis/README.md @@ -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: diff --git a/flask-redis/docker-compose.yml b/flask-redis/compose.yaml similarity index 100% rename from flask-redis/docker-compose.yml rename to flask-redis/compose.yaml diff --git a/gitea-postgres/README.md b/gitea-postgres/README.md index bc38f66..7fba2b7 100644 --- a/gitea-postgres/README.md +++ b/gitea-postgres/README.md @@ -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 diff --git a/minecraft/docker-compose.yml b/minecraft/compose.yaml similarity index 100% rename from minecraft/docker-compose.yml rename to minecraft/compose.yaml diff --git a/nextcloud-postgres/README.md b/nextcloud-postgres/README.md index ee418ba..b0be42a 100644 --- a/nextcloud-postgres/README.md +++ b/nextcloud-postgres/README.md @@ -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)... diff --git a/nextcloud-redis-mariadb/README.md b/nextcloud-redis-mariadb/README.md index 5d7fbb0..8f4b133 100644 --- a/nextcloud-redis-mariadb/README.md +++ b/nextcloud-redis-mariadb/README.md @@ -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 diff --git a/nginx-golang/README.md b/nginx-golang/README.md index 0a4f623..943fa62 100644 --- a/nginx-golang/README.md +++ b/nginx-golang/README.md @@ -7,7 +7,7 @@ Project structure: ├── backend │   ├── Dockerfile │   └── main.go -├── docker compose.yml +├── compose.yaml ├── frontend │   ├── Dockerfile │   └── nginx.conf diff --git a/nginx-golang/docker-compose.yml b/nginx-golang/compose.yaml similarity index 100% rename from nginx-golang/docker-compose.yml rename to nginx-golang/compose.yaml diff --git a/nginx-nodejs-redis/README.md b/nginx-nodejs-redis/README.md index dadc2fe..41a0d2a 100644 --- a/nginx-nodejs-redis/README.md +++ b/nginx-nodejs-redis/README.md @@ -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' diff --git a/nginx-nodejs-redis/docker-compose.yml b/nginx-nodejs-redis/compose.yaml similarity index 100% rename from nginx-nodejs-redis/docker-compose.yml rename to nginx-nodejs-redis/compose.yaml diff --git a/prometheus-grafana/README.md b/prometheus-grafana/README.md index 6c8d70e..ae62ba9 100644 --- a/prometheus-grafana/README.md +++ b/prometheus-grafana/README.md @@ -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: diff --git a/prometheus-grafana/docker-compose.yml b/prometheus-grafana/compose.yaml similarity index 100% rename from prometheus-grafana/docker-compose.yml rename to prometheus-grafana/compose.yaml diff --git a/react-express-mongodb/docker-compose.yml b/react-express-mongodb/compose.yaml similarity index 100% rename from react-express-mongodb/docker-compose.yml rename to react-express-mongodb/compose.yaml diff --git a/react-express-mysql/backend/README.md b/react-express-mysql/backend/README.md index 8ab34a1..e4429b9 100755 --- a/react-express-mysql/backend/README.md +++ b/react-express-mysql/backend/README.md @@ -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 diff --git a/react-nginx/README.md b/react-nginx/README.md index 475b603..b26b024 100755 --- a/react-nginx/README.md +++ b/react-nginx/README.md @@ -5,7 +5,7 @@ Project structure: ``` -├── docker compose.yml +├── compose.yaml ├── Dockerfile ├── .dockerignore ├── .nginx diff --git a/react-nginx/docker-compose.yml b/react-nginx/compose.yaml similarity index 100% rename from react-nginx/docker-compose.yml rename to react-nginx/compose.yaml diff --git a/traefik-golang/README.md b/traefik-golang/README.md index 2581ebe..af3364c 100644 --- a/traefik-golang/README.md +++ b/traefik-golang/README.md @@ -7,7 +7,7 @@ Project structure: ├── backend │   ├── Dockerfile │   └── main.go -├── docker compose.yml +├── compose.yaml └── README.md ``` diff --git a/traefik-golang/docker-compose.yml b/traefik-golang/compose.yaml similarity index 100% rename from traefik-golang/docker-compose.yml rename to traefik-golang/compose.yaml