Skip to content

Commit d367713

Browse files
committed
Image: fixed command arguments
1 parent 8cfc00a commit d367713

7 files changed

Lines changed: 17 additions & 17 deletions

File tree

.gitattributes

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
# All rights reserved.
44
#
55
# Developed by: Philipp Paulweber et al.
6-
# <https://github.com/fiskaly/docker.migrate-postgres/graphs/contributors>
6+
# <https://github.com/fiskaly/docker.migrate-pgsql/graphs/contributors>
77
#
8-
# This file is part of docker.migrate-postgres.
8+
# This file is part of docker.migrate-pgsql.
99
#
1010
# Permission is hereby granted, free of charge, to any person obtaining a copy
1111
# of this software and associated documentation files (the "Software"), to deal

.github/workflows/build.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
# All rights reserved.
44
#
55
# Developed by: Philipp Paulweber et al.
6-
# <https://github.com/fiskaly/docker.migrate-postgres/graphs/contributors>
6+
# <https://github.com/fiskaly/docker.migrate-pgsql/graphs/contributors>
77
#
8-
# This file is part of docker.migrate-postgres.
8+
# This file is part of docker.migrate-pgsql.
99
#
1010
# Permission is hereby granted, free of charge, to any person obtaining a copy
1111
# of this software and associated documentation files (the "Software"), to deal

.github/workflows/release.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
# All rights reserved.
44
#
55
# Developed by: Philipp Paulweber et al.
6-
# <https://github.com/fiskaly/docker.migrate-postgres/graphs/contributors>
6+
# <https://github.com/fiskaly/docker.migrate-pgsql/graphs/contributors>
77
#
8-
# This file is part of docker.migrate-postgres.
8+
# This file is part of docker.migrate-pgsql.
99
#
1010
# Permission is hereby granted, free of charge, to any person obtaining a copy
1111
# of this software and associated documentation files (the "Software"), to deal

.gitignore

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
# All rights reserved.
44
#
55
# Developed by: Philipp Paulweber et al.
6-
# <https://github.com/fiskaly/docker.migrate-postgres/graphs/contributors>
6+
# <https://github.com/fiskaly/docker.migrate-pgsql/graphs/contributors>
77
#
8-
# This file is part of docker.migrate-postgres.
8+
# This file is part of docker.migrate-pgsql.
99
#
1010
# Permission is hereby granted, free of charge, to any person obtaining a copy
1111
# of this software and associated documentation files (the "Software"), to deal

Dockerfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
# All rights reserved.
44
#
55
# Developed by: Philipp Paulweber et al.
6-
# <https://github.com/fiskaly/docker.migrate-postgres/graphs/contributors>
6+
# <https://github.com/fiskaly/docker.migrate-pgsql/graphs/contributors>
77
#
8-
# This file is part of docker.migrate-postgres.
8+
# This file is part of docker.migrate-pgsql.
99
#
1010
# Permission is hereby granted, free of charge, to any person obtaining a copy
1111
# of this software and associated documentation files (the "Software"), to deal
@@ -45,7 +45,7 @@ RUN apk update \
4545

4646
RUN CGO_ENABLED=0 \
4747
go install -tags 'postgres' github.com/golang-migrate/migrate/v4/cmd/migrate@v4.15.2 \
48-
&& /go/bin/migrate version
48+
&& /go/bin/migrate -version
4949

5050
FROM scratch \
5151
AS image
@@ -57,4 +57,4 @@ COPY --from=build /go/bin/migrate /migrate
5757

5858
USER appuser:appuser
5959
ENTRYPOINT ["/migrate"]
60-
CMD ["help"]
60+
CMD ["-help"]

LICENSE

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ Copyright (C) 2023 fiskaly GmbH <https://fiskaly.com>
33
All rights reserved.
44

55
Developed by: Philipp Paulweber et al.
6-
<https://github.com/fiskaly/docker.migrate-postgres/graphs/contributors>
6+
<https://github.com/fiskaly/docker.migrate-pgsql/graphs/contributors>
77

8-
This file is part of docker.migrate-postgres.
8+
This file is part of docker.migrate-pgsql.
99

1010
Permission is hereby granted, free of charge, to any person obtaining a copy
1111
of this software and associated documentation files (the "Software"), to deal

Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
# All rights reserved.
44
#
55
# Developed by: Philipp Paulweber et al.
6-
# <https://github.com/fiskaly/docker.migrate-postgres/graphs/contributors>
6+
# <https://github.com/fiskaly/docker.migrate-pgsql/graphs/contributors>
77
#
8-
# This file is part of docker.migrate-postgres.
8+
# This file is part of docker.migrate-pgsql.
99
#
1010
# Permission is hereby granted, free of charge, to any person obtaining a copy
1111
# of this software and associated documentation files (the "Software"), to deal
@@ -28,4 +28,4 @@
2828
default: build
2929

3030
build:
31-
docker build -t docker.migrate-postgres:`git describe --tags --always --dirty` .
31+
docker build -t docker.migrate-pgsql:`git describe --tags --always --dirty` .

0 commit comments

Comments
 (0)