Skip to content

Commit

Permalink
fix Makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
gromdimon committed Nov 19, 2024
1 parent b8a9ad5 commit 0633ce7
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,11 @@ SHELLCHECK_EXCLUDES := SC2012,SC2046,SC2086

.PHONY: lint-shellcheck
lint-shellcheck:
shellcheck --allow-empty -e $(SHELLCHECK_EXCLUDES) *.sh
shellcheck -e $(SHELLCHECK_EXCLUDES) *.sh

.PHONY: format
format: format-shellcheck

.PHONY: format-shellcheck
format-shellcheck:
shellcheck --allow-empty -e $(SHELLCHECK_EXCLUDES) -f diff *.sh | git apply
shellcheck -e $(SHELLCHECK_EXCLUDES) -f diff *.sh | git apply --allow-empty
5 changes: 5 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
---

version: "3.9"


Expand Down Expand Up @@ -61,6 +63,9 @@ services:
- type: bind
source: ${config_basedir:-./config}/pgadmin/servers.json
target: /pgadmin4/servers.json
networks:
- internal_net
- external_net


# == Secrets ================================================================
Expand Down

0 comments on commit 0633ce7

Please sign in to comment.