Skip to content

Commit

Permalink
added migrations
Browse files Browse the repository at this point in the history
  • Loading branch information
ansibleguy committed Feb 23, 2024
1 parent 955f243 commit 9c1a378
Show file tree
Hide file tree
Showing 4 changed files with 1,786 additions and 1 deletion.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

## Version 0

### 0.0.10
### 0.0.10 / 0.0.11

**Features:**

Expand Down
1 change: 1 addition & 0 deletions CONTRIBUTE.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ Read into the [Troubleshooting Guide](https://ansible-webui.readthedocs.io/en/la

* Do not commit [database migrations](https://docs.djangoproject.com/en/5.0/topics/migrations/#module-django.db.migrations) - they will be created on release.
* As we mainly use SQLite as database we should keep the DB writes to a minimum, so we do not run into locking issues (`OperationalError: database is locked`)
* Important fixes and features should be added to the CHANGELOG.md file

----

Expand Down
3 changes: 3 additions & 0 deletions docker/Dockerfile_production_aws
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
ARG AW_VERSION
ARG AW_USER=aw

# references:
# https://github.com/ansibleguy/ansible-webui/discussions/5
Expand All @@ -21,5 +22,7 @@ RUN apt -y update && apt -y upgrade && apt -y install rpm tar gzip wget zip && a
/go/src/github.com/session-manager-plugin/bin/linux_amd64_plugin/session-manager-plugin --version

FROM ansible0guy/ansible-webui-unprivileged:${AW_VERSION}
USER root
RUN apk add py3-boto3 aws-cli
COPY --from=ssm-builder /go/src/github.com/session-manager-plugin/bin/linux_amd64_plugin/session-manager-plugin /usr/bin/
USER ${AW_USER}
Loading

0 comments on commit 9c1a378

Please sign in to comment.