Skip to content

Commit ec0f242

Browse files
authored
Remove unnecessary blank in docker compose file. (#548)
1 parent a088d53 commit ec0f242

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

docker-compose.yml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ services:
66
environment:
77
- POSTGRES_HOST_AUTH_METHOD=trust
88
- POSTGRES_DB=djangosnippets
9-
109
volumes:
1110
- postgresdata:/var/lib/postgresql/data
11+
1212
web:
1313
build: .
1414
environment:
@@ -20,10 +20,7 @@ services:
2020
- DJANGO_SETTINGS_MODULE=${DJANGO_SETTINGS_MODULE}
2121
- SEARCHBOX_SSL_URL=${SEARCHBOX_SSL_URL}
2222
- SESSION_COOKIE_SECURE=${SESSION_COOKIE_SECURE}
23-
24-
2523
command: gunicorn djangosnippets.wsgi:application -b 0.0.0.0:8000 --log-level debug -k gevent -w 2
26-
2724
volumes:
2825
- .:/code
2926
ports:
@@ -32,7 +29,6 @@ services:
3229
- db
3330
- redis
3431

35-
3632
redis:
3733
restart: always
3834
image: redis:3.2.12

0 commit comments

Comments
 (0)