From 98676f0573962015372e5557bc4b7c80b69030e4 Mon Sep 17 00:00:00 2001 From: diced Date: Sat, 14 Jan 2023 15:25:36 -0800 Subject: [PATCH] fix: docker stuff --- CONTRIBUTING.md | 2 +- Dockerfile | 2 +- docker-compose.dev.yml | 2 -- docker-compose.yml | 4 ++-- 4 files changed, 4 insertions(+), 6 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 66f2688c..9ee94d3c 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -12,7 +12,7 @@ Create an issue on GitHub, please include the following (if one of them is not a ## Feature requests -Create an issue on GitHub, please include the following: +Create an discussion on GitHub, please include the following: - Breif explanation of the feature in the title (very breif please) - How it would work (detailed, but optional) diff --git a/Dockerfile b/Dockerfile index c680d733..541b5164 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM ghcr.io/diced/prisma-binaries:4.7.x as prisma +FROM ghcr.io/diced/prisma-binaries:4.8.x as prisma FROM node:alpine3.16 AS deps RUN mkdir -p /prisma-engines diff --git a/docker-compose.dev.yml b/docker-compose.dev.yml index 32c57fc8..43b10228 100644 --- a/docker-compose.dev.yml +++ b/docker-compose.dev.yml @@ -2,7 +2,6 @@ version: '3' services: postgres: image: postgres:15 - restart: always environment: - POSTGRES_USER=postgres - POSTGRES_PASSWORD=postgres @@ -21,7 +20,6 @@ services: dockerfile: Dockerfile ports: - '3000:3000' - restart: unless-stopped env_file: - .env.local volumes: diff --git a/docker-compose.yml b/docker-compose.yml index 2ab4b425..d3cc2f3a 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -2,7 +2,7 @@ version: '3' services: postgres: image: postgres:15 - restart: always + restart: unless-stopped environment: - POSTGRES_USER=postgres - POSTGRES_PASSWORD=postgres @@ -19,7 +19,7 @@ services: image: ghcr.io/diced/zipline ports: - '3000:3000' - restart: always + restart: unless-stopped environment: - CORE_RETURN_HTTPS=false - CORE_SECRET=changethis