Changed docker-compose.yml version to 2.0 and tried to fix recursion issue by naming images.
This commit is contained in:
parent
ab795864be
commit
c5ac3eb7ac
1 changed files with 3 additions and 1 deletions
|
@ -1,8 +1,9 @@
|
||||||
version: '3.3'
|
version: '2.0'
|
||||||
|
|
||||||
services:
|
services:
|
||||||
api:
|
api:
|
||||||
build: ./back
|
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
|
command: gunicorn --bind 0.0.0.0:444 --keyfile /etc/ssl/private/selfsigned.key --certfile /etc/ssl/private/selfsigned.crt reimbursinator.wsgi:application
|
||||||
#volumes:
|
#volumes:
|
||||||
# - ./app/:/usr/src/back/
|
# - ./app/:/usr/src/back/
|
||||||
|
@ -12,6 +13,7 @@ services:
|
||||||
- SECRET_KEY=please_change
|
- SECRET_KEY=please_change
|
||||||
web:
|
web:
|
||||||
build: ./front
|
build: ./front
|
||||||
|
image: reimbursinator_front
|
||||||
image: nginx:1.10.3
|
image: nginx:1.10.3
|
||||||
ports:
|
ports:
|
||||||
- "8443:443"
|
- "8443:443"
|
||||||
|
|
Loading…
Reference in a new issue