We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9d9fa4f commit 467547dCopy full SHA for 467547d
1 file changed
docker-compose.yml
@@ -9,6 +9,9 @@ services:
9
- POSTGRES_DB=postgres
10
- POSTGRES_USER=postgres
11
- POSTGRES_PASSWORD=postgres
12
+ read_only: true
13
+ security_opt:
14
+ - no-new-privileges:true
15
web:
16
build: .
17
image: pygoat/pygoat
@@ -20,10 +23,16 @@ services:
20
23
depends_on:
21
24
- migration
22
25
- db
26
27
28
29
migration:
30
31
command: python pygoat/manage.py migrate --noinput
32
volumes:
33
- .:/app
34
35
36
37
38
0 commit comments