feat: example docker-compose
This commit is contained in:
parent
96ad17e43b
commit
a1c8ddff22
1 changed files with 17 additions and 0 deletions
17
docker-compose.yml.example
Normal file
17
docker-compose.yml.example
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
version: '3'
|
||||
|
||||
services:
|
||||
db:
|
||||
image: postgres:15
|
||||
environment:
|
||||
POSTGRES_USER: postgres
|
||||
POSTGRES_PASSWORD: postgres
|
||||
POSTGRES_DB: rave
|
||||
rave:
|
||||
image: forge.lys.ee/lyssieth/rave:amd64
|
||||
environment:
|
||||
DATABASE_URL: postgresql://postgres:postgres@db/rave
|
||||
ports:
|
||||
- 8000:1234
|
||||
depends_on:
|
||||
- db
|
||||
Loading…
Reference in a new issue