cachethq / cachethq/Docker

Docker setup doesn't work and gives all Cachet config pages in one page

Open
#416 2 comments 0 reactions 0 assignees View on GitHub
Dominant language
Shell
Stars
439
Forks
271
PR merge metrics
No merged PRs in 30d

Description

Essentially, this, I have gotten this after multiple reinstalls:

![image](https://user-images.githubusercontent.com/8932732/161171059-c1668d57-29e1-408d-81d9-a9ec90dacd9f.png)

Here's my docker-compose file:

```
version: "3"

services:
postgres:
image: postgres:12-alpine
volumes:
- /var/lib/postgresql/data
environment:
- POSTGRES_USER=postgres
- POSTGRES_PASSWORD=833d4aa3d852c583
restart: always
cachet:
image: cachethq/docker:latest
ports:
- 8787:8000
links:
- postgres:postgres
environment:
- DB_DRIVER=pgsql
- DB_HOST=postgres
- DB_PORT=5432
- DB_DATABASE=postgres
- DB_USERNAME=postgres
- DB_PASSWORD=833d4aa3d852c583
- DB_PREFIX=chq_
- APP_KEY=base64:UWLlBazkwP3z9G7a4Qb/Xkx4Q3FNSVhv0ClqBppPggo=
- APP_LOG=errorlog
- APP_ENV=${APP_ENV:-production}
- APP_DEBUG=false
- DEBUG=false
depends_on:
- postgres
restart: on-failure

```

Contributor guide

Open the contributing guide

Assessment

This issue has not been assessed yet.

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.