From a1c8ddff22d6db628361269b435234d03a0667c9 Mon Sep 17 00:00:00 2001 From: Lyssieth Date: Sat, 14 Oct 2023 22:13:09 +0300 Subject: [PATCH] feat: example docker-compose --- docker-compose.yml.example | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 docker-compose.yml.example diff --git a/docker-compose.yml.example b/docker-compose.yml.example new file mode 100644 index 0000000..6fad71a --- /dev/null +++ b/docker-compose.yml.example @@ -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