mirror of
https://github.com/redlib-org/redlib.git
synced 2025-04-03 04:57:38 +03:00
Expand Docker documentation and allow using .env (#49)
Fix seccomp error for Docker Compose
This commit is contained in:
parent
c6030064f1
commit
f507fcfcf8
3 changed files with 120 additions and 33 deletions
13
compose.yaml
13
compose.yaml
|
@ -1,19 +1,20 @@
|
|||
services:
|
||||
web:
|
||||
image: quay.io/redlib/redlib
|
||||
# quay.io/redlib/redlib:latest-arm # uncomment if you use arm64
|
||||
# quay.io/redlib/redlib:latest-armv7 # uncomment if you use armv7
|
||||
redlib:
|
||||
image: quay.io/redlib/redlib:latest
|
||||
# image: quay.io/redlib/redlib:latest-arm # uncomment if you use arm64
|
||||
# image: quay.io/redlib/redlib:latest-armv7 # uncomment if you use armv7
|
||||
restart: always
|
||||
container_name: "redlib"
|
||||
ports:
|
||||
- 8080:8080
|
||||
- 8080:8080 # Specify `127.0.0.1:8080:8080` instead if using a reverse proxy
|
||||
user: nobody
|
||||
read_only: true
|
||||
security_opt:
|
||||
- no-new-privileges:true
|
||||
- seccomp="seccomp-redlib.json"
|
||||
- seccomp=seccomp-redlib.json
|
||||
cap_drop:
|
||||
- ALL
|
||||
env_file: .env
|
||||
networks:
|
||||
- redlib
|
||||
healthcheck:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue