Skip to content

Commit

Permalink
build: upgrade compose postgres image (#128)
Browse files Browse the repository at this point in the history
* build: upgrade compose postgres image

* fix: typo in spacing for license

* docs: move license badge to top of readme

* docs: Apache license hyperlink in readme
  • Loading branch information
jbrockopp committed Mar 11, 2020
1 parent f2ca16d commit 93afdbf
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 5 deletions.
3 changes: 2 additions & 1 deletion .github/README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# ui

[![license](https://img.shields.io/crates/l/gl.svg)](LICENSE)
[![Github Actions](https://github.com/go-vela/ui/workflows/ci/badge.svg?branch=master&event=push)](https://github.com/go-vela/ui/actions?query=branch%3Amaster+event%3Apush)

vela ui
Expand All @@ -24,4 +25,4 @@ Please see our [contributing](CONTRIBUTING.md) documentation for further instruc
Copyright (c) 2020 Target Brands, Inc.
```

[![license](https://img.shields.io/crates/l/gl.svg)](LICENSE)
[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0)
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Apache License
Apache License
Version 2.0, January 2004
http://www.apache.org/licenses/

Expand Down
8 changes: 5 additions & 3 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ services:
VELA_ADDR: 'http://localhost:8080'
VELA_WEBUI_ADDR: 'http://ui:80'
VELA_DATABASE_DRIVER: postgres
VELA_DATABASE_CONFIG: postgres://postgres@postgres:5432/vela?sslmode=disable
VELA_LOG_LEVEL: debug
VELA_DATABASE_CONFIG: postgres://vela:zB7mrKDTZqNeNTD8z47yG4DHywspAh@postgres:5432/vela?sslmode=disable
VELA_LOG_LEVEL: trace
VELA_QUEUE_DRIVER: redis
VELA_QUEUE_CONFIG: redis://redis:6379
VELA_QUEUE_WORKER_ROUTES: larger,docker,large:docker
Expand Down Expand Up @@ -80,11 +80,13 @@ services:

postgres:
container_name: postgres
image: postgres:11-alpine
image: postgres:12-alpine
networks:
- vela
environment:
POSTGRES_DB: vela
POSTGRES_PASSWORD: zB7mrKDTZqNeNTD8z47yG4DHywspAh
POSTGRES_USER: vela
ports:
- '5432:5432'

Expand Down

0 comments on commit 93afdbf

Please sign in to comment.