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.
|
image: docker:latest
|
|
|
|
services:
|
|
- docker:dind
|
|
|
|
stages:
|
|
- build
|
|
|
|
build_job:
|
|
stage: build
|
|
script:
|
|
- docker build -t my_postgres_db .
|
|
- docker run -d --name my_postgres_db -e POSTGRES_PASSWORD=sucepute -p 5432:5432 my_postgres_db
|