Skip to content
Snippets Groups Projects
Commit 1b6e75e8 authored by poka's avatar poka
Browse files

add docker build script for squid

parent 0fcd7af0
No related branches found
No related tags found
2 merge requests!16Hasura as GraphQL engine,!14Draft: Hasura as GraphQL engine
Pipeline #36300 skipped
...@@ -2,7 +2,7 @@ version: "3" ...@@ -2,7 +2,7 @@ version: "3"
services: services:
processor: processor:
image: h30x/duniter-squid image: poka/duniter-squid
environment: environment:
- DB_NAME=${DB_NAME} - DB_NAME=${DB_NAME}
- DB_PORT=5432 - DB_PORT=5432
......
#!/bin/bash
set -e
tag=$1
[[ ! $tag ]] && tag="latest"
docker build -f Dockerfile -t duniter-squid .
docker image tag duniter-squid:$tag poka/duniter-squid
docker image push poka/duniter-squid:$tag
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment