Merge branch 'develop'

This commit is contained in:
Aarni Halinen
2019-10-08 00:05:15 +03:00
2 changed files with 1 additions and 5 deletions
+1 -1
View File
@@ -5,7 +5,7 @@ WORKDIR /app
COPY requirements.txt ./ COPY requirements.txt ./
COPY requirements.production.txt ./ COPY requirements.production.txt ./
COPY . ./ COPY . ./
COPY sikweb/settings-sample-prod.py settings.py COPY sikweb/settings-sample-prod.py sikweb/settings.py
# uWSGI, gunicorn etc. # uWSGI, gunicorn etc.
RUN apk add --no-cache --virtual .build-deps python3-dev build-base linux-headers pcre-dev openssl \ RUN apk add --no-cache --virtual .build-deps python3-dev build-base linux-headers pcre-dev openssl \
-4
View File
@@ -3,8 +3,6 @@ version: '3'
services: services:
db: db:
image: postgres image: postgres
volumes:
- db-data:/var/lib/postgresql/data
web: web:
build: . build: .
image: registry.gitlab.com/sahkoinsinoorikilta/vtmk/web2.0-backend image: registry.gitlab.com/sahkoinsinoorikilta/vtmk/web2.0-backend
@@ -13,5 +11,3 @@ services:
- "8000:8000" - "8000:8000"
depends_on: depends_on:
- db - db
volumes:
db-data: {}