forked from sqitchers/docker-sqitch
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'remotes/upstream/main' into yifan/sync-…
…upstream
- Loading branch information
Showing
8 changed files
with
66 additions
and
39 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
NAME=sqitch | ||
TITLE=Sqitch | ||
VERSION=1.4.1 | ||
IMAGE=sqitch/sqitch | ||
DESCRIPTION="Sensible database change management" | ||
VENDOR="The Sqitch Community" | ||
AUTHORS="Sqitch Hackers <sqitch-hackers@googlegroups.com>" | ||
URL=https://hub.docker.com/r/sqitch/sqitch/ | ||
DOCS="https://github.com/sqitchers/docker-sqitch#readme" | ||
SOURCE=https://github.com/sqitchers/docker-sqitch | ||
LICENSE=MIT |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,19 @@ | ||
.DEFAULT_GOAL := sqitch | ||
.PHONY: oracle snowflake vertica exasol firebird postgres mysql sqlite | ||
|
||
sqitch: Dockerfile | ||
sqitch: Dockerfile .envrc | ||
./build | ||
|
||
# Oracle only on amd64 till an issue building DBD::Oracle is sorted. | ||
# https://rt.cpan.org/Ticket/Display.html?id=149876 | ||
oracle: oracle/Dockerfile | ||
env DIR=oracle REGISTRY=sqitch ./build | ||
env DIR=oracle REGISTRY=sqitch ARCHS=amd64 ./build | ||
|
||
# Snowflake only on amd64 till SnowSQL ARM support released. | ||
# https://community.snowflake.com/s/question/0D5Do00000ltxpVKAQ/snowsql-linuxarm64-support | ||
snowflake: snowflake/Dockerfile | ||
env DIR=snowflake REGISTRY=sqitch ./build --build-arg sf_account=example | ||
env DIR=snowflake REGISTRY=sqitch ARCHS=amd64 ./build --build-arg sf_account=example | ||
|
||
# Exasol currently offers no ARM support. | ||
exasol: exasol/Dockerfile | ||
env DIR=exasol REGISTRY=sqitch ./build | ||
env DIR=exasol REGISTRY=sqitch ARCHS=amd64 ./build |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters