Kaynağa Gözat

add docker compose for production

pull/342/head
Guillaume Vincent 8 yıl önce
ebeveyn
işleme
b071e3dadf
4 değiştirilmiş dosya ile 26 ekleme ve 6 silme
  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 Dosyayı Görüntüle

@@ -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 Dosyayı Görüntüle

@@ -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 Dosyayı Görüntüle

@@ -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 Dosyayı Görüntüle

@@ -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

Yükleniyor…
İptal
Kaydet