mirror of
https://github.com/LemmyNet/lemmy
synced 2024-10-30 15:21:20 +00:00
Merge branch 'master' into documentation
This commit is contained in:
commit
19faf8c921
@ -12,8 +12,7 @@ before_script:
|
||||
before_install:
|
||||
- cd server
|
||||
script:
|
||||
- cargo install diesel_cli --no-default-features --features postgres
|
||||
- cargo build
|
||||
- cargo install --force diesel_cli --no-default-features --features postgres
|
||||
- diesel migration run
|
||||
- cargo build --all
|
||||
- cargo test --all
|
||||
|
@ -1,4 +1,4 @@
|
||||
version: '3'
|
||||
version: '2.4'
|
||||
|
||||
services:
|
||||
db:
|
||||
@ -8,6 +8,11 @@ services:
|
||||
POSTGRES_USER: rrr
|
||||
POSTGRES_PASSWORD: rrr
|
||||
POSTGRES_DB: rrr
|
||||
healthcheck:
|
||||
test: ["CMD-SHELL", "pg_isready -U rrr"]
|
||||
interval: 30s
|
||||
timeout: 30s
|
||||
retries: 3
|
||||
lemmy:
|
||||
build:
|
||||
context: .
|
||||
@ -17,6 +22,6 @@ services:
|
||||
environment:
|
||||
LEMMY_FRONT_END_DIR: /app/dist
|
||||
DATABASE_URL: postgres://rrr:rrr@db:5432/rrr
|
||||
|
||||
links:
|
||||
- db
|
||||
depends_on:
|
||||
db:
|
||||
condition: service_healthy
|
||||
|
Loading…
Reference in New Issue
Block a user