Skip to content

Commit 3fb8cdf

Browse files
committed
Add missing EOF newline to docker components
1 parent e574436 commit 3fb8cdf

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

.dockerignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
!.coveragerc
33
!.env
44
!.pylintrc
5-
DOCS/**
5+
DOCS/**

compose/django/start

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,4 +77,4 @@ function main {
7777
esac
7878
}
7979

80-
main "$@";
80+
main "$@";

compose/nginx/nginx.conf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,4 +75,4 @@ server {
7575
}
7676

7777
}
78-
# End setup for SSL site
78+
# End setup for SSL site

compose/postgres/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
FROM postgres:11.3
22

3-
COPY --chmod=0755 ./compose/postgres/maintenance/ /usr/local/bin/
3+
COPY --chmod=0755 ./compose/postgres/maintenance/ /usr/local/bin/

production.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,4 +70,4 @@ services:
7070
read_only: true
7171
ports:
7272
- '0.0.0.0:80:80'
73-
- '0.0.0.0:443:443'
73+
- '0.0.0.0:443:443'

0 commit comments

Comments
 (0)