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