You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
812 B
24 lines
812 B
kind: pipeline
|
|
type: docker
|
|
name: deploy-postgresql
|
|
|
|
steps:
|
|
# container deployment
|
|
- name: deploy-container
|
|
image: hub.codefirst.iut.uca.fr/thomas.bellembois/codefirst-dockerproxy-clientdrone:latest
|
|
environment:
|
|
IMAGENAME: hub.codefirst.iut.uca.fr/kentin.brongniart/WikiFantasy/WF-Database:latest
|
|
CONTAINERNAME: WF-DATABASE
|
|
COMMAND: create
|
|
OVERWRITE: true
|
|
CODEFIRST_CLIENTDRONE_ENV_DB_SERVER:
|
|
from_secret: db_server
|
|
CODEFIRST_CLIENTDRONE_ENV_DB_USER:
|
|
from_secret: db_user
|
|
CODEFIRST_CLIENTDRONE_ENV_DB_PASSWORD:
|
|
from_secret: db_password
|
|
CODEFIRST_CLIENTDRONE_ENV_DB_DATABASE:
|
|
from_secret: db_database
|
|
ADMINS: lenibeaulaton
|
|
depends_on: [ deploy-container-mysql, docker-build-and-push ]
|