update shell scripts to use latest docker version

This commit is contained in:
Daniel Herrero García 2023-03-06 11:04:43 +01:00
parent e4b6d62930
commit 6cf1bae0f6
5 changed files with 11 additions and 9 deletions

View File

@ -5,6 +5,8 @@
- New .env based configuration docker
- Control services startup based on healthchecks
- Thanks to @tibroc for adding hostnames to rabbitmq services
- Thanks to @ralfyang for updating shell scripts to use latest docker version
## 6.5.0 (2022-01-24)

View File

@ -11,11 +11,11 @@
## Getting Started
This section intends to explain how to get Taiga up and running in a simple two steps, using **docker** and **docker-compose**.
This section intends to explain how to get Taiga up and running in a simple two steps, using **docker** and **docker compose**.
If you don't have docker installed, please follow installation instructions from docker.com: https://docs.docker.com/engine/install/
If you don't have docker installed, please follow installation instructions from [docker.com](https://docs.docker.com/engine/install/) (**version 19.03.0+**)
Additionally, it's necessary to have familiarity with Docker, docker-compose and Docker repositories.
Additionally, it's necessary to have familiarity with Docker, docker compose and Docker repositories.
**Note** branch `stable` should be used to deploy Taiga in production and `main` branch for development purposes.
@ -417,9 +417,9 @@ Map the file into `/taiga-front/dist/config.py`.
## Configure an admin user
```bash
$ docker-compose up -d
$ docker compose up -d
$ docker-compose -f docker-compose.yml -f docker-compose-inits.yml run --rm taiga-manage createsuperuser
$ docker compose -f docker-compose.yml -f docker-compose-inits.yml run --rm taiga-manage createsuperuser
```
## Up and running
@ -427,7 +427,7 @@ $ docker-compose -f docker-compose.yml -f docker-compose-inits.yml run --rm taig
Once everything has been installed, launch all the services and check the result:
```bash
$ docker-compose up -d
$ docker compose up -d
```
## Configure the proxy

View File

@ -7,4 +7,4 @@
# Copyright (c) 2021-present Kaleidos Ventures SL
set -x
exec docker-compose -f docker-compose.yml -f docker-compose.penpot.yml up -d $@
exec docker compose -f docker-compose.yml -f docker-compose.penpot.yml up -d $@

View File

@ -7,4 +7,4 @@
# Copyright (c) 2021-present Kaleidos Ventures SL
set -x
exec docker-compose -f docker-compose.yml up -d $@
exec docker compose -f docker-compose.yml up -d $@

View File

@ -7,4 +7,4 @@
# Copyright (c) 2021-present Kaleidos Ventures SL
set -x
exec docker-compose -f docker-compose.yml -f docker-compose-inits.yml run --rm taiga-manage $@
exec docker compose -f docker-compose.yml -f docker-compose-inits.yml run --rm taiga-manage $@