소스 검색

add docker compose for production

pull/342/head
Guillaume Vincent 8 년 전
부모
커밋
b071e3dadf
4개의 변경된 파일26개의 추가작업 그리고 6개의 파일을 삭제
  1. +1
    -1
      .gitignore
  2. +5
    -5
      .travis.yml
  3. +7
    -0
      config/config.test.ini
  4. +13
    -0
      docker-compose.production.yml

+ 1
- 1
.gitignore 파일 보기

@@ -69,7 +69,7 @@ target/
[Ss]cripts
pyvenv.cfg
pip-selfcheck.json
/config
/config/config.ini
*.sqlite3
/frontend/node_modules
.idea/

+ 5
- 5
.travis.yml 파일 보기

@@ -2,11 +2,11 @@ language: python
python:
- 3.4
- 3.5
install: pip install -r requirements.dev.txt
script: python manage.py test
services:
- postgresql
addons:
postgresql: "9.5"
services:
- postgresql
before_script:
- psql -c 'create database db;' -U postgres
- mv config/config.test.ini config/config.ini
install: pip install -r requirements.dev.txt
script: python manage.py test

+ 7
- 0
config/config.test.ini 파일 보기

@@ -0,0 +1,7 @@
[DATABASE]
engine = django.db.backends.postgresql_psycopg2
name = postgres
user = postgres
password =
host = localhost
port = 5432

+ 13
- 0
docker-compose.production.yml 파일 보기

@@ -0,0 +1,13 @@
db:
image: postgres:9.5
restart: always
volumes:
- dbdata:/var/lib/postgresql/data
web:
restart: always
image: oslab/lesspass-drf
command: ./start.sh
ports:
- "8000:8000"
links:
- db

불러오는 중...
취소
저장