mirror of
https://github.com/taigaio/taiga-docker.git
synced 2025-07-31 01:44:39 +02:00
update shell scripts to use latest docker version
This commit is contained in:
parent
e4b6d62930
commit
6cf1bae0f6
@ -5,6 +5,8 @@
|
|||||||
- New .env based configuration docker
|
- New .env based configuration docker
|
||||||
- Control services startup based on healthchecks
|
- Control services startup based on healthchecks
|
||||||
- Thanks to @tibroc for adding hostnames to rabbitmq services
|
- 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)
|
## 6.5.0 (2022-01-24)
|
||||||
|
|
||||||
|
12
README.md
12
README.md
@ -11,11 +11,11 @@
|
|||||||
|
|
||||||
## Getting Started
|
## 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.
|
**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
|
## Configure an admin user
|
||||||
|
|
||||||
```bash
|
```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
|
## 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:
|
Once everything has been installed, launch all the services and check the result:
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
$ docker-compose up -d
|
$ docker compose up -d
|
||||||
```
|
```
|
||||||
|
|
||||||
## Configure the proxy
|
## Configure the proxy
|
||||||
|
@ -7,4 +7,4 @@
|
|||||||
# Copyright (c) 2021-present Kaleidos Ventures SL
|
# Copyright (c) 2021-present Kaleidos Ventures SL
|
||||||
|
|
||||||
set -x
|
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 $@
|
||||||
|
@ -7,4 +7,4 @@
|
|||||||
# Copyright (c) 2021-present Kaleidos Ventures SL
|
# Copyright (c) 2021-present Kaleidos Ventures SL
|
||||||
|
|
||||||
set -x
|
set -x
|
||||||
exec docker-compose -f docker-compose.yml up -d $@
|
exec docker compose -f docker-compose.yml up -d $@
|
||||||
|
@ -7,4 +7,4 @@
|
|||||||
# Copyright (c) 2021-present Kaleidos Ventures SL
|
# Copyright (c) 2021-present Kaleidos Ventures SL
|
||||||
|
|
||||||
set -x
|
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 $@
|
||||||
|
Loading…
x
Reference in New Issue
Block a user