Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

dbeaver/dbeaver-devops#1046 Changed name image nginx to dbeaver-nginx… #26

Open
wants to merge 1 commit into
base: devel
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion AWS/ecs-fargate/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ variable "cloudbeaver-env" {
},
{
"name": "CLOUDBEAVER_PUBLIC_URL",
"value": "test-domain-name.databases.team"
"value": ""
}]
}

Expand Down
4 changes: 2 additions & 2 deletions docker-compose-host.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ volumes:
services:
nginx:
restart: unless-stopped
image: $IMAGE_SOURCE/cloudbeaver-nginx:${CLOUDBEAVER_VERSION_TAG}
image: $IMAGE_SOURCE/dbeaver-nginx:${CLOUDBEAVER_VERSION_TAG}
network_mode: host
user: root
environment:
Expand Down Expand Up @@ -46,7 +46,7 @@ services:
restart: unless-stopped
hostname: postgres
network_mode: host
image: ${IMAGE_SOURCE:-dbeaver}/cloudbeaver-postgres:16
image: ${IMAGE_SOURCE:-dbeaver}/dbeaver-postgres:16
volumes:
- postgres_data:/var/lib/postgresql/data
- ./cloudbeaver-db-init.sql:/docker-entrypoint-initdb.d/cb-init.sql
Expand Down
4 changes: 2 additions & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ networks:
services:
nginx:
restart: unless-stopped
image: $IMAGE_SOURCE/cloudbeaver-nginx:${CLOUDBEAVER_VERSION_TAG}
image: $IMAGE_SOURCE/dbeaver-nginx:${CLOUDBEAVER_VERSION_TAG}
ports:
- 80:80
- 443:443
Expand Down Expand Up @@ -55,7 +55,7 @@ services:
postgres:
restart: unless-stopped
hostname: postgres
image: ${IMAGE_SOURCE:-dbeaver}/cloudbeaver-postgres:16
image: ${IMAGE_SOURCE:-dbeaver}/dbeaver-postgres:16
volumes:
- postgres_data:/var/lib/postgresql/data
- ./cloudbeaver-db-init.sql:/docker-entrypoint-initdb.d/cb-init.sql
Expand Down
2 changes: 1 addition & 1 deletion k8s/templates/deployment/db.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ spec:
app: db
spec:
containers:
- image: dbeaver/cloudbeaver-postgres:13
- image: dbeaver/dbeaver-postgres:13
imagePullPolicy: "IfNotPresent"
name: postgres
env:
Expand Down