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

Update the docker-compose file to create the docker logs volume #143

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
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
4 changes: 4 additions & 0 deletions install/docker-compose-gateway.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ services:
volumes:
- gateway_data_volume:/gateway/overrideProperties/config
- gateway_database_volume:/gateway/database
- gateway_logs_volume:/gateway/tmp

networks:
beckn_network:
Expand All @@ -24,3 +25,6 @@ volumes:
gateway_database_volume:
name: gateway_database_volume
external: true
gateway_logs_volume:
name: gateway_logs_volume
external: true
5 changes: 5 additions & 0 deletions install/docker-compose-registry.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ services:
registry:
image: fidedocker/registry
container_name: registry
platform: linux/amd64
networks:
- beckn_network
ports:
Expand All @@ -11,6 +12,7 @@ services:
volumes:
- registry_data_volume:/registry/overrideProperties/config
- registry_database_volume:/registry/database
- registry_logs_volume:/registry/tmp

networks:
beckn_network:
Expand All @@ -24,3 +26,6 @@ volumes:
registry_database_volume:
name: registry_database_volume
external: true
registry_logs_volume:
name: registry_logs_volume
external: true