diff --git a/.drone.yml b/.drone.yml index 40fd392..59b8292 100644 --- a/.drone.yml +++ b/.drone.yml @@ -9,7 +9,7 @@ steps: - name: dockersock path: /var/run/docker.sock commands: - - make ci + - BUILDKIT_PROGRESS=plain docker compose build volumes: - name: dockersock diff --git a/.env b/.env deleted file mode 100644 index a915426..0000000 --- a/.env +++ /dev/null @@ -1,2 +0,0 @@ -POSTGRES_USER="blog" -POSTGRES_PASSWORD="blog" diff --git a/.gitignore b/.gitignore index 4ddfdc4..5de89c0 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ blog/ +.env diff --git a/Makefile b/Makefile index 597c21a..6444cba 100644 --- a/Makefile +++ b/Makefile @@ -4,6 +4,3 @@ all: build build: docker compose build - -ci: - BUILDKIT_PROGRESS=plain docker compose build