Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
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 README.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ If environment is prepared, then we can start cello service.
```bash
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
57df1462c7f1 cello/hyperledger-fabric-agent:local "python manage.py r…" 4 seconds ago Up 2 seconds 0.0.0.0:5001->8080/tcp, :::5001->8080/tcp cello-docker-agent
04367ab6bd5e postgres:12.0 "docker-entrypoint.s…" 4 seconds ago Up 2 seconds 0.0.0.0:5432->5432/tcp, :::5432->5432/tcp cello-postgres
04367ab6bd5e postgres:16.8 "docker-entrypoint.s…" 4 seconds ago Up 2 seconds 0.0.0.0:5432->5432/tcp, :::5432->5432/tcp cello-postgres
29b56a279893 cello/api-engine:latest "/bin/sh -c 'bash /e…" 4 seconds ago Up 2 seconds 0.0.0.0:8080->8080/tcp, :::8080->8080/tcp cello-api-engine
a272a06d8280 cello/dashboard:latest "bash -c 'nginx -g '…" 4 seconds ago Up 2 seconds 0.0.0.0:8081->8081/tcp, :::8081->8081/tcp cello-dashboard
```
Expand Down
2 changes: 1 addition & 1 deletion bootup/docker-compose-files/docker-compose-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ services:

# pg database
cello-postgres:
image: postgres:12.0
image: postgres:16.8
container_name: cello-postgres
restart: unless-stopped
environment:
Expand Down
2 changes: 1 addition & 1 deletion bootup/docker-compose-files/docker-compose.dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ services:

# pg database
cello-postgres:
image: postgres:12.0
image: postgres:16.8
container_name: cello-postgres
restart: unless-stopped
environment:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ services:

# pg database
cello-postgres:
image: postgres:12.0
image: postgres:16.8
container_name: cello-postgres
restart: unless-stopped
environment:
Expand Down
2 changes: 1 addition & 1 deletion bootup/docker-compose-files/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ services:
- /opt/cello/api-engine/media:/var/www/media

postgres-server:
image: postgres:12.0
image: postgres:16.8
hostname: cello-postgres-server
container_name: cello-postgres-server
restart: always
Expand Down
6 changes: 4 additions & 2 deletions docker-compose.dev.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ services:
- cello-api-engine

cello-postgres:
image: postgres:12.0
image: postgres:16.8
container_name: cello-postgres
restart: unless-stopped
environment:
Expand Down Expand Up @@ -68,7 +68,9 @@ services:
- /var/run/docker.sock:/var/run/docker.sock
- cello-hyperledger-fabric-agent:/cello
networks:
- cello-net
cello-net:
aliases:
- cello-hyperledger-fabric-agent

networks:
cello-net:
Expand Down
Loading