#57: Added optiona SSL verification if no URL is specified when creating app

This commit is contained in:
frikky
2020-06-13 15:51:18 +02:00
parent 927ca5504d
commit 18824daecc
6 changed files with 228 additions and 31 deletions
+12 -12
View File
@@ -13,18 +13,6 @@ services:
restart: unless-stopped
depends_on:
- backend
database:
#build: ./backend/database
image: frikky/shuffle:database
container_name: shuffle-database
hostname: shuffle-database
ports:
- "8000:8000"
networks:
- shuffle
restart: unless-stopped
volumes:
- ${DB_LOCATION}:/etc/shuffle
backend:
#build: ./backend
image: frikky/shuffle:backend
@@ -59,6 +47,18 @@ services:
- BASE_URL=http://${OUTER_HOSTNAME}:${BACKEND_PORT}
- DOCKER_API_VERSION=1.40
restart: unless-stopped
database:
#build: ./backend/database
image: frikky/shuffle:database
container_name: shuffle-database
hostname: shuffle-database
ports:
- "8000:8000"
networks:
- shuffle
restart: unless-stopped
volumes:
- ${DB_LOCATION}:/etc/shuffle
networks:
shuffle:
driver: bridge