Merge branch 'trunk' of github.com:diced/zipline into trunk
This commit is contained in:
commit
181833d768
3 changed files with 12 additions and 9 deletions
|
@ -2,11 +2,12 @@ version: '3'
|
||||||
services:
|
services:
|
||||||
postgres:
|
postgres:
|
||||||
image: postgres
|
image: postgres
|
||||||
environment:
|
restart: always
|
||||||
|
environment:
|
||||||
- POSTGRES_USER=postgres
|
- POSTGRES_USER=postgres
|
||||||
- POSTGRES_PASSWORD=postgres
|
- POSTGRES_PASSWORD=postgres
|
||||||
- POSTGRES_DATABASE=postgres
|
- POSTGRES_DATABASE=postgres
|
||||||
volumes:
|
volumes:
|
||||||
- pg_data:/var/lib/postgresql/data
|
- pg_data:/var/lib/postgresql/data
|
||||||
healthcheck:
|
healthcheck:
|
||||||
test: ['CMD-SHELL', 'pg_isready -U postgres']
|
test: ['CMD-SHELL', 'pg_isready -U postgres']
|
||||||
|
|
|
@ -2,11 +2,12 @@ version: '3'
|
||||||
services:
|
services:
|
||||||
postgres:
|
postgres:
|
||||||
image: postgres
|
image: postgres
|
||||||
environment:
|
restart: always
|
||||||
|
environment:
|
||||||
- POSTGRES_USER=postgres
|
- POSTGRES_USER=postgres
|
||||||
- POSTGRES_PASSWORD=postgres
|
- POSTGRES_PASSWORD=postgres
|
||||||
- POSTGRES_DATABASE=postgres
|
- POSTGRES_DATABASE=postgres
|
||||||
volumes:
|
volumes:
|
||||||
- pg_data:/var/lib/postgresql/data
|
- pg_data:/var/lib/postgresql/data
|
||||||
healthcheck:
|
healthcheck:
|
||||||
test: ['CMD-SHELL', 'pg_isready -U postgres']
|
test: ['CMD-SHELL', 'pg_isready -U postgres']
|
||||||
|
@ -21,7 +22,7 @@ services:
|
||||||
ports:
|
ports:
|
||||||
- '3000:3000'
|
- '3000:3000'
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
environment:
|
environment:
|
||||||
- SECURE=false
|
- SECURE=false
|
||||||
- SECRET=changethis
|
- SECRET=changethis
|
||||||
- HOST=0.0.0.0
|
- HOST=0.0.0.0
|
||||||
|
|
|
@ -2,11 +2,12 @@ version: '3'
|
||||||
services:
|
services:
|
||||||
postgres:
|
postgres:
|
||||||
image: postgres
|
image: postgres
|
||||||
environment:
|
restart: always
|
||||||
|
environment:
|
||||||
- POSTGRES_USER=postgres
|
- POSTGRES_USER=postgres
|
||||||
- POSTGRES_PASSWORD=postgres
|
- POSTGRES_PASSWORD=postgres
|
||||||
- POSTGRES_DATABASE=postgres
|
- POSTGRES_DATABASE=postgres
|
||||||
volumes:
|
volumes:
|
||||||
- pg_data:/var/lib/postgresql/data
|
- pg_data:/var/lib/postgresql/data
|
||||||
healthcheck:
|
healthcheck:
|
||||||
test: ['CMD-SHELL', 'pg_isready -U postgres']
|
test: ['CMD-SHELL', 'pg_isready -U postgres']
|
||||||
|
@ -18,8 +19,8 @@ services:
|
||||||
image: ghcr.io/diced/zipline/zipline:trunk
|
image: ghcr.io/diced/zipline/zipline:trunk
|
||||||
ports:
|
ports:
|
||||||
- '3000:3000'
|
- '3000:3000'
|
||||||
restart: unless-stopped
|
restart: always
|
||||||
environment:
|
environment:
|
||||||
- SECURE=false
|
- SECURE=false
|
||||||
- SECRET=changethis
|
- SECRET=changethis
|
||||||
- HOST=0.0.0.0
|
- HOST=0.0.0.0
|
||||||
|
|
Loading…
Reference in a new issue