add env in comfpose file

This commit is contained in:
jigoong
2026-02-17 10:56:09 +07:00
parent 400b27a6c8
commit 6e3fcb95cf
4 changed files with 38 additions and 16 deletions

View File

@@ -40,9 +40,11 @@ services:
- shared_data_network
###0.63.8
airbyte-temporal:
image: airbyte/temporal:1.8.5
image: airbyte/temporal:1.7.8
container_name: airbyte-temporal
restart: unless-stopped
env_file:
- ../.env.global
environment:
- DB=postgresql
- DB_PORT=${DB_PORT}
@@ -55,11 +57,13 @@ services:
- shared_data_network
bootloader:
image: airbyte/bootloader:1.8.5
image: airbyte/bootloader:1.7.8
container_name: airbyte-bootloader
restart: "no"
env_file:
- ../.env.global
environment:
- AIRBYTE_VERSION=1.8.5
- AIRBYTE_VERSION=1.7.8
- DATABASE_URL=jdbc:postgresql://${DB_HOST}:${DB_PORT}/airbyte
- DATABASE_USER=${DB_USER}
- DATABASE_PASSWORD=${DB_PASSWORD}
@@ -68,15 +72,17 @@ services:
- shared_data_network
worker:
image: airbyte/worker:1.8.5
image: airbyte/worker:1.7.8
container_name: airbyte-worker
restart: unless-stopped
env_file:
- ../.env.global
depends_on:
- docker-proxy
- airbyte-temporal
- bootloader
environment:
- AIRBYTE_VERSION=1.8.5
- AIRBYTE_VERSION=1.7.8
- DATABASE_URL=jdbc:postgresql://${DB_HOST}:${DB_PORT}/airbyte
- DATABASE_USER=${DB_USER}
- DATABASE_PASSWORD=${DB_PASSWORD}
@@ -95,14 +101,16 @@ services:
- shared_data_network
server:
image: airbyte/server:1.8.5
image: airbyte/server:1.7.8
container_name: airbyte-server
restart: unless-stopped
depends_on:
- airbyte-temporal
- bootloader
env_file:
- ../.env.global
environment:
- AIRBYTE_VERSION=1.8.5
- AIRBYTE_VERSION=1.7.8
- DATABASE_URL=jdbc:postgresql://${DB_HOST}:${DB_PORT}/airbyte
- DATABASE_USER=${DB_USER}
- DATABASE_PASSWORD=${DB_PASSWORD}
@@ -121,7 +129,7 @@ services:
- shared_data_network
webapp:
image: airbyte/webapp:1.8.5
image: airbyte/webapp:1.7.8
container_name: airbyte-webapp
restart: unless-stopped
environment:
@@ -132,13 +140,15 @@ services:
- server
airbyte-cron:
image: airbyte/cron:1.8.5
image: airbyte/cron:1.7.8
container_name: airbyte-cron
restart: unless-stopped
depends_on:
- bootloader
env_file:
- ../.env.global
environment:
- AIRBYTE_VERSION=1.8.5
- AIRBYTE_VERSION=1.7.8
- DATABASE_URL=jdbc:postgresql://${DB_HOST}:${DB_PORT}/airbyte
- DATABASE_USER=${DB_USER}
- DATABASE_PASSWORD=${DB_PASSWORD}
@@ -151,7 +161,7 @@ services:
- shared_data_network
airbyte-api-server:
image: airbyte/airbyte-api-server:1.8.5
image: airbyte/airbyte-api-server:0.63.8
container_name: airbyte-api-server
restart: unless-stopped
depends_on:
@@ -160,7 +170,7 @@ services:
- shared_data_network
airbyte-connector-builder-server:
image: airbyte/connector-builder-server:1.8.5
image: airbyte/connector-builder-server:1.7.8
container_name: airbyte-connector-builder-server
restart: unless-stopped
depends_on:
@@ -169,9 +179,11 @@ services:
- shared_data_network
airbyte-proxy:
image: airbyte/proxy:1.8.5
image: airbyte/proxy:1.4.1
container_name: airbyte-proxy
restart: unless-stopped
env_file:
- ../.env.global
ports:
- "8030:8000"
- "8001:8001"