Skip to content

Commit a0bf2f8

Browse files
committed
add missing argument to docker build command
1 parent 51f5433 commit a0bf2f8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ Now, if you haven't yet, build the Docker image and run the following command (i
9191

9292
```
9393
# if you haven't yet, build the image and give it a name and tag of your liking
94-
$ docker build -t ${IMAGE}:${TAG}
94+
$ docker build -t ${IMAGE}:${TAG} .
9595
# run the backup command
9696
$ docker run --rm --network host -e CMD=backup -e AWS_ACCESS_KEY_ID="${AWS_ACCESS_KEY_ID}" -e AWS_SECRET_ACCESS_KEY="${AWS_SECRET_ACCESS_KEY}" -e S3_BUCKET="${BUCKET}" -e S3_PREFIX="${PREFIX}" -e POSTGRESQL_DATABASE="defectdojo" -e POSTGRESQL_USER="defectdojo" -e POSTGRESQL_PASSWORD="${POSTGRESQL_PASSWORD}" -e POSTGRESQL_PORT=${LOCAL_PORT} -e POSTGRESQL_HOST="{localhost|host.docker.internal}" -e AES_KEY="${AES_KEY}" ${IMAGE}:${TAG}
9797

0 commit comments

Comments
 (0)