diff --git a/strapi/.dockerignore b/strapi/.dockerignore index bb87ea39..7f7051a4 100644 --- a/strapi/.dockerignore +++ b/strapi/.dockerignore @@ -106,6 +106,8 @@ coverage ############################ .env +.env.production +.env.development license.txt exports .strapi diff --git a/strapi/.gitignore b/strapi/.gitignore index 475286a1..fa108538 100644 --- a/strapi/.gitignore +++ b/strapi/.gitignore @@ -106,6 +106,7 @@ coverage ############################ .env +.env.production .env.development license.txt exports diff --git a/strapi/postgres/docker-compose.yml b/strapi/postgres/docker-compose.yml new file mode 100644 index 00000000..a7636f6f --- /dev/null +++ b/strapi/postgres/docker-compose.yml @@ -0,0 +1,20 @@ +version: "3.1" + +services: + db: + image: postgres + restart: always + environment: + POSTGRES_USER: AUIS + POSTGRES_PASSWORD: GuryIsGoat + POSTGRES_DB: AUIS + ports: + - 5433:5432 + expose: + - 5432 + + adminer: + image: adminer + restart: always + ports: + - 8080:8080