Merge pull request #19 from danieldupriest/docker-config-fixes

Changed docker-compose.yml version to 2.0 and tried to fix recursion …
This commit is contained in:
hui2018 2019-01-18 20:32:56 -08:00 committed by GitHub
commit f72fb78c95
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,8 +1,9 @@
version: '3.3'
version: '2.0'
services:
api:
build: ./back
image: reimbursinator_back
command: gunicorn --bind 0.0.0.0:444 --keyfile /etc/ssl/private/selfsigned.key --certfile /etc/ssl/private/selfsigned.crt reimbursinator.wsgi:application
#volumes:
# - ./app/:/usr/src/back/
@ -12,6 +13,7 @@ services:
- SECRET_KEY=please_change
web:
build: ./front
image: reimbursinator_front
image: nginx:1.10.3
ports:
- "8443:443"