mirror of
https://github.com/odoocker/odoocker
synced 2025-11-04 15:19:22 +01:00
added container names
This commit is contained in:
@@ -1,5 +1,6 @@
|
|||||||
services:
|
services:
|
||||||
odoo:
|
odoo:
|
||||||
|
container_name: odoo
|
||||||
build:
|
build:
|
||||||
context: ./
|
context: ./
|
||||||
dockerfile: ./odoo/Dockerfile
|
dockerfile: ./odoo/Dockerfile
|
||||||
@@ -56,6 +57,7 @@ services:
|
|||||||
profiles: [$ODOO_PROFILES]
|
profiles: [$ODOO_PROFILES]
|
||||||
|
|
||||||
postgres:
|
postgres:
|
||||||
|
container_name: postgres
|
||||||
build:
|
build:
|
||||||
context: ./
|
context: ./
|
||||||
dockerfile: ./postgres/Dockerfile
|
dockerfile: ./postgres/Dockerfile
|
||||||
@@ -82,6 +84,7 @@ services:
|
|||||||
profiles: [$POSTGRES_PROFILES]
|
profiles: [$POSTGRES_PROFILES]
|
||||||
|
|
||||||
nginx:
|
nginx:
|
||||||
|
container_name: nginx
|
||||||
image: nginx:${NGINX_TAG}
|
image: nginx:${NGINX_TAG}
|
||||||
depends_on:
|
depends_on:
|
||||||
- odoo
|
- odoo
|
||||||
@@ -102,6 +105,7 @@ services:
|
|||||||
profiles: [$NGINX_PROFILES]
|
profiles: [$NGINX_PROFILES]
|
||||||
|
|
||||||
nginx-proxy:
|
nginx-proxy:
|
||||||
|
container_name: nginx-proxy
|
||||||
image: nginxproxy/nginx-proxy:${NGINX_PROXY_TAG}
|
image: nginxproxy/nginx-proxy:${NGINX_PROXY_TAG}
|
||||||
depends_on:
|
depends_on:
|
||||||
- nginx
|
- nginx
|
||||||
@@ -151,7 +155,8 @@ services:
|
|||||||
- traefik.http.routers.traefik-dashboard.service=${TRAEFIK_DASHBOARD_SERVICE}
|
- traefik.http.routers.traefik-dashboard.service=${TRAEFIK_DASHBOARD_SERVICE}
|
||||||
profiles: [$TRAEFIK_PROFILES]
|
profiles: [$TRAEFIK_PROFILES]
|
||||||
|
|
||||||
letsencrypt:
|
acme:
|
||||||
|
container_name: acme-companion
|
||||||
image: nginxproxy/acme-companion:${ACME_COMPANION_TAG}
|
image: nginxproxy/acme-companion:${ACME_COMPANION_TAG}
|
||||||
depends_on:
|
depends_on:
|
||||||
- nginx-proxy
|
- nginx-proxy
|
||||||
@@ -169,7 +174,8 @@ services:
|
|||||||
- internal
|
- internal
|
||||||
profiles: [$ACME_COMPANION_PROFILES]
|
profiles: [$ACME_COMPANION_PROFILES]
|
||||||
|
|
||||||
redis:
|
keydb:
|
||||||
|
container_name: keydb
|
||||||
image: eqalpha/keydb:${KEYDB_TAG}
|
image: eqalpha/keydb:${KEYDB_TAG}
|
||||||
platform: linux/amd64
|
platform: linux/amd64
|
||||||
ports:
|
ports:
|
||||||
@@ -180,7 +186,8 @@ services:
|
|||||||
- internal
|
- internal
|
||||||
profiles: [$KEYDB_PROFILES]
|
profiles: [$KEYDB_PROFILES]
|
||||||
|
|
||||||
s3:
|
minio:
|
||||||
|
container_name: minio
|
||||||
image: minio/minio:${MINIO_TAG}
|
image: minio/minio:${MINIO_TAG}
|
||||||
environment:
|
environment:
|
||||||
- MINIO_ROOT_USER
|
- MINIO_ROOT_USER
|
||||||
@@ -200,6 +207,7 @@ services:
|
|||||||
profiles: [$MINIO_PROFILES]
|
profiles: [$MINIO_PROFILES]
|
||||||
|
|
||||||
pgadmin:
|
pgadmin:
|
||||||
|
container_name: pgadmin
|
||||||
build:
|
build:
|
||||||
context: ./
|
context: ./
|
||||||
dockerfile: ./pgadmin/Dockerfile
|
dockerfile: ./pgadmin/Dockerfile
|
||||||
|
|||||||
Reference in New Issue
Block a user