fix(docker-compose): remove port for hyperswitch-server-init in docker-compose.yml (#763)

This commit is contained in:
Arjun Karthik
2023-03-17 15:00:50 +05:30
committed by GitHub
parent 78794ed664
commit 20b93276fc

View File

@ -85,7 +85,7 @@ services:
migration_runner:
image: rust:1.65
command: "bash -c 'cargo install diesel_cli && diesel migration --database-url postgres://db_user:db_pass@pg:5432/hyperswitch_db run'"
command: "bash -c 'cargo install diesel_cli --no-default-features --features \"postgres\" && diesel migration --database-url postgres://db_user:db_pass@pg:5432/hyperswitch_db run'"
working_dir: /app
networks:
- router_net
@ -96,8 +96,6 @@ services:
image: rust:1.65
command: cargo build --bin router
working_dir: /app
ports:
- "8080:8080"
networks:
- router_net
volumes: