diff --git a/redlib/compose.yml b/redlib/compose.yml new file mode 100644 index 0000000..5a3320a --- /dev/null +++ b/redlib/compose.yml @@ -0,0 +1,24 @@ +services: + redlib: + image: quay.io/redlib/redlib:latest + restart: always + container_name: "redlib" + ports: + - 4243:8080 + user: nobody + read_only: true + security_opt: + - no-new-privileges:true + # - seccomp=seccomp-redlib.json + cap_drop: + - ALL + env_file: .env + networks: + - redlib + healthcheck: + test: ["CMD", "wget", "--spider", "-q", "--tries=1", "http://localhost:4243/settings"] + interval: 5m + timeout: 3s + +networks: + redlib: \ No newline at end of file