update container_name

This commit is contained in:
MaKarin
2026-03-22 22:51:41 +03:00
parent e8a8664417
commit ad287b960c

View File

@@ -3,7 +3,7 @@ version: "3.8"
services:
postgres-jira:
image: postgres:14-alpine
container_name: postgres-jira
container_name: postgres-jira-greact
restart: unless-stopped
volumes:
- postgres-jira-data:/var/lib/postgresql/data
@@ -21,7 +21,7 @@ services:
postgres-confluence:
image: postgres:14-alpine
container_name: postgres-confluence
container_name: postgres-confluence-greact
restart: unless-stopped
volumes:
- postgres-confluence-data:/var/lib/postgresql/data
@@ -39,14 +39,14 @@ services:
jira:
restart: unless-stopped
container_name: jira
container_name: jira-greact
build:
context: .
dockerfile: Dockerfile.jira
expose:
- "8080"
environment:
- ATL_JDBC_URL=jdbc:postgresql://postgres-jira:5432/jiradb
- ATL_JDBC_URL=jdbc:postgresql://postgres-jira-greact:5432/jiradb
- ATL_JDBC_USER=jiradb
- ATL_JDBC_PASSWORD=jiradbpass
- ATL_DB_TYPE=postgresql
@@ -67,7 +67,7 @@ services:
confluence:
restart: unless-stopped
container_name: confluence
container_name: confluence-greact
build:
context: .
dockerfile: Dockerfile.confluence
@@ -75,7 +75,7 @@ services:
- "8090"
- "8091"
environment:
- ATL_JDBC_URL=jdbc:postgresql://postgres-confluence:5432/confluencedb
- ATL_JDBC_URL=jdbc:postgresql://postgres-confluence-greact:5432/confluencedb
- ATL_JDBC_USER=confluencedb
- ATL_JDBC_PASSWORD=confluencepass
- ATL_DB_TYPE=postgresql