Skip to content

Commit

Permalink
fix: incorrect ports in docker-compose
Browse files Browse the repository at this point in the history
Pull Request #202 introduced a bug with port variables substitution in
the `docker-compose.yml` file. Because of this bug clickhouse was not
running correctly in a docker container. Now this bug is fixed.
  • Loading branch information
AlexanderLukin committed Oct 17, 2023
1 parent f32025d commit ed23a26
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ services:
expose:
- "${HTTP_PORT}"
ports:
- "${EXTERNAL_HTTP_PORT:-${HTTP_PORT}}:${HTTP_PORT}"
- "${EXTERNAL_HTTP_PORT}:${HTTP_PORT}"
volumes:
- ./docker/validators/:/app/docker/validators
depends_on:
Expand Down

0 comments on commit ed23a26

Please sign in to comment.