이 웹사이트는 자바스크립트 활성화가 필요합니다.
홈
도움말
로그인
heuzef
/
lesspass
의 미러
https://github.com/lesspass/lesspass.git
보기
1
좋아요
0
포크
0
코드
이슈
0
릴리즈
67
위키
활동
소스 검색
use default docker compose pattern for dev and production
pull/44/head
Guillaume Vincent
8 년 전
부모
5c6770d946
커밋
2b741f0f92
5개의 변경된 파일
과
20개의 추가작업
그리고
11개의 파일을 삭제
분할 보기
Diff Options
Show Stats
Download Patch File
Download Diff File
+13
-0
docker-compose.override.yml
+4
-0
docker-compose.prod.yml
+1
-9
docker-compose.yml
+1
-1
frontend
+1
-1
nginx
+ 13
- 0
docker-compose.override.yml
파일 보기
@@ -0,0 +1,13 @@
version: '2'
services:
backend:
volumes:
- ./backend:/backend
command: python manage.py runserver 0.0.0.0:8000
frontend:
volumes:
- ./frontend:/frontend
- node_modules:/frontend/node_modules
command: npm run dev
volumes:
node_modules:
+ 4
- 0
docker-compose.prod.yml
파일 보기
@@ -1,5 +1,7 @@
version: '2'
services:
db:
restart: always
backend:
restart: always
volumes:
@@ -12,6 +14,8 @@ services:
command: npm start
nginx:
restart: always
environment:
- domain=lesspass.com
volumes:
backend:
frontend:
+ 1
- 9
docker-compose.yml
파일 보기
@@ -1,34 +1,26 @@
version: '2'
services:
db:
restart: always
image: postgres:9.5
volumes:
- postgresql:/var/lib/postgresql/data
backend:
build: ./backend
volumes:
- ./backend:/backend
ports:
- "8000:8000"
depends_on:
- db
command: python manage.py runserver 0.0.0.0:8000
frontend:
build: ./frontend
volumes:
- ./frontend:/frontend
- /frontend/node_modules
ports:
- "8080:8080"
command: npm run dev
nginx:
build: ./nginx
ports:
- "80:80"
- "443:443"
environment:
- domain=lesspass.com
- domain=
www.
lesspass.com
volumes:
- ./nginx/ssl:/certificates
volumes_from:
+ 1
- 1
frontend
@@ -1 +1 @@
Subproject commit
7f840338d707b3519f97e0cd3f9b44914e5b96f
b
Subproject commit
038ad30aee69ba1f1b15804065fa79421939cbc
b
+ 1
- 1
nginx
@@ -1 +1 @@
Subproject commit
14cc12d27ddd424a56d9b26eef975632c02cc3f
c
Subproject commit
34c2913c10e889a68ee8e14fcd10b9a34f8f335
c
쓰기
미리보기
불러오는 중...
취소
저장