Skip to content
Snippets Groups Projects
Commit 191fe68f authored by Dmytro Bogatov's avatar Dmytro Bogatov :two_hearts:
Browse files

Fixes.

parent da3c64fc
Branches
No related tags found
No related merge requests found
Pipeline #
......@@ -20,6 +20,18 @@ build-docs:
tags:
- docker
build-ping:
image: golang:alpine
stage: build
script:
- ./build.sh -f build-ping-server
artifacts:
expire_in: 90 min
paths:
- ping/bin/*
tags:
- docker
build-app:
image: dbogatov/docker-containers:dotnet-core-latest
stage: build
......@@ -101,6 +113,7 @@ release-all:
dependencies:
- build-app
- build-docs
- build-ping
script:
- ./build.sh -f build-docker-images
- docker login -u $DOCKER_USER -p $DOCKER_PASS
......
......@@ -263,8 +263,6 @@ build-app () {
build-dotnet
build-ping-server
echo "Build app completed!"
}
......
......@@ -23,9 +23,15 @@ services:
- postgres
links:
- "postgres:database"
- "ping:ping"
volumes:
- ./appsettings.yml:/srv/appsettings.production.yml
restart: on-failure
ping:
image: dbogatov/status-site:ping-${DOTNET_TAG}
ports:
- 8888:8888
restart: on-failure
daemons:
image: dbogatov/status-site:daemons-${DOTNET_TAG}
environment:
......
FROM golang:alpine
FROM alpine
# Create directory for the app source code
WORKDIR /srv
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment