rave/docker-compose.yml.example
Lyssieth 7bdd1db290
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
fix: adjust example to have the right image name
2023-10-19 22:13:58 +03:00

20 lines
412 B
Text

version: '3'
services:
db:
image: postgres:15
environment:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
POSTGRES_DB: rave
rave:
image: forge.lys.ee/lyssieth/rave:latest
environment:
DATABASE_URL: postgresql://postgres:postgres@db/rave
volumes:
- ./storage:/storage:ro
- ./cache:/cache:rw
ports:
- 8000:1234
depends_on:
- db