Commit 3067461e authored by Pedro Eduardo Trujillo's avatar Pedro Eduardo Trujillo
Browse files

Migra a imagen oficial, adapta config

parent 262e42ca
Loading
Loading
Loading
Loading

.gitignore

deleted100644 → 0
+0 −0

Empty file deleted.

+1 −5
Original line number Diff line number Diff line
@@ -6,12 +6,8 @@ include:
stages:
  - deploy

variables:
  PROJECT_PARENT_NAME: postgres

.deploy:
  variables:
    STACK: ${PROJECT_PARENT_NAME}
    SERVICES_TO_CHECK: ${PROJECT_PARENT_NAME}_${CI_PROJECT_NAME}
    STACK: postgres
  environment:
    url: https://${CI_PROJECT_NAME}.${PUBLIC_HOSTNAME}
+10 −9
Original line number Diff line number Diff line
PGADMIN_PORT=5050
PGADMIN_SETUP_EMAIL=postgres
PGADMIN_SETUP_PASSWORD=password
MAIL_USER=postgres
MAIL_PASSWORD=password
SERVER_MODE=true
MAIL_SERVER=mail.redmic.es
MAIL_PORT=25
MAIL_USE_TLS=true
PGADMIN_LISTEN_PORT=80
PGADMIN_DEFAULT_EMAIL=postgres
PGADMIN_DEFAULT_PASSWORD=password
PGADMIN_CONFIG_MAIL_USER=postgres
PGADMIN_CONFIG_MAIL_PASSWORD=password
PGADMIN_CONFIG_MAIL_SERVER=mail.redmic.es
PGADMIN_CONFIG_MAIL_PORT=25
PGADMIN_CONFIG_MAIL_USE_TLS=true

PGADMIN_VOL_NAME=pgadmin-vol
+1 −1
Original line number Diff line number Diff line
@@ -9,4 +9,4 @@ services:

volumes:
  pgadmin-vol:
    name: ${PGADMIN_VOL_NAME:-pgadmin-vol}
    name: ${PGADMIN_VOL_NAME}
+1 −1
Original line number Diff line number Diff line
@@ -2,7 +2,7 @@ version: '3.5'

volumes:
  pgadmin-vol:
    name: ${PGADMIN_VOL_NAME:-pgadmin-vol}
    name: ${PGADMIN_VOL_NAME}
    driver: 'cloudstor:aws'
    driver_opts:
      backing: shared
Loading