Mercurial > libervia-backend
annotate docker/docker-compose.yml @ 4081:84f6bee6440d
installation: moved from `setup.py` to `pyproject.toml`:
- updated installation to use the now standard `pyproject.toml` instead of legacy
`setup.py`. `setup.py` and other legacy files have been deleted.
- removed outdated README4PACKAGERS
- removed pylintrc which has not been correctly reviewed. Linter conf should go to
`pyproject.toml` now.
- [hatch](https://hatch.pypa.io) is now used as main building tool. However, thanks to the
use of standards, other tools can be used too.
- update .hgignore
- several dependencies version bump, with code update to adapt to changes.
author | Goffi <goffi@goffi.org> |
---|---|
date | Tue, 06 Jun 2023 16:45:16 +0200 |
parents | 0ffaa231138c |
children |
rev | line source |
---|---|
3381 | 1 version: "3.6" |
2 services: | |
3 | |
3497
73e04040d577
docker: update following name changes:
Goffi <goffi@goffi.org>
parents:
3418
diff
changeset
|
4 backend: |
3641
0ffaa231138c
docker: Libervia revision can now be specified:
Goffi <goffi@goffi.org>
parents:
3497
diff
changeset
|
5 image: "libervia/backend:${DOCKER_LIBERVIA_REV:-dev}" |
0ffaa231138c
docker: Libervia revision can now be specified:
Goffi <goffi@goffi.org>
parents:
3497
diff
changeset
|
6 build: |
0ffaa231138c
docker: Libervia revision can now be specified:
Goffi <goffi@goffi.org>
parents:
3497
diff
changeset
|
7 context: backend-dev |
0ffaa231138c
docker: Libervia revision can now be specified:
Goffi <goffi@goffi.org>
parents:
3497
diff
changeset
|
8 args: |
0ffaa231138c
docker: Libervia revision can now be specified:
Goffi <goffi@goffi.org>
parents:
3497
diff
changeset
|
9 REVISION: "${DOCKER_LIBERVIA_REV:-}" |
3381 | 10 |
3497
73e04040d577
docker: update following name changes:
Goffi <goffi@goffi.org>
parents:
3418
diff
changeset
|
11 web: |
3641
0ffaa231138c
docker: Libervia revision can now be specified:
Goffi <goffi@goffi.org>
parents:
3497
diff
changeset
|
12 image: "libervia/web:${DOCKER_LIBERVIA_REV:-dev}" |
0ffaa231138c
docker: Libervia revision can now be specified:
Goffi <goffi@goffi.org>
parents:
3497
diff
changeset
|
13 build: |
0ffaa231138c
docker: Libervia revision can now be specified:
Goffi <goffi@goffi.org>
parents:
3497
diff
changeset
|
14 context: libervia-web-dev |
0ffaa231138c
docker: Libervia revision can now be specified:
Goffi <goffi@goffi.org>
parents:
3497
diff
changeset
|
15 args: |
0ffaa231138c
docker: Libervia revision can now be specified:
Goffi <goffi@goffi.org>
parents:
3497
diff
changeset
|
16 REVISION: "${DOCKER_LIBERVIA_REV:-}" |
3381 | 17 depends_on: |
3497
73e04040d577
docker: update following name changes:
Goffi <goffi@goffi.org>
parents:
3418
diff
changeset
|
18 - backend |