-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: or-1349 add postgres reset scripts
- Loading branch information
Showing
4 changed files
with
11 additions
and
10 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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
drop database if exists verenigingsregister with (force); | ||
create database verenigingsregister; | ||
|
||
grant all privileges on database verenigingsregister to verenigingsregister; | ||
grant all privileges on database verenigingsregister to verenigingsregister; |
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,11 +1,15 @@ | ||
FROM public.ecr.aws/aws-cli/aws-cli:2.15.2 | ||
FROM postgres:14 | ||
|
||
LABEL maintainer="Digitaal Vlaanderen <digitaal.vlaanderen@vlaanderen.be>" | ||
LABEL registry="association-registry" | ||
|
||
# Install the AWS CLI | ||
RUN apt-get update | ||
RUN apt-get install python3-pip pipx -y | ||
|
||
RUN pipx install awscli | ||
|
||
COPY .aws/ /app | ||
WORKDIR /app | ||
|
||
RUN yum install -y bash curl | ||
|
||
ENTRYPOINT ["./init.sh"] |
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