Rename compose.dev.yml to compose.dev.yaml (#52)

Minor typo
This commit is contained in:
Kirk1984 2024-02-12 20:13:48 +01:00 committed by GitHub
parent b7778d5f95
commit 1f246c956d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

26
compose.dev.yaml Normal file
View file

@ -0,0 +1,26 @@
# docker-compose -f docker-compose.dev.yml up -d
version: "3.8"
services:
redlib:
build: .
restart: always
container_name: "redlib"
ports:
- 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
cap_drop:
- ALL
networks:
- redlib
healthcheck:
test: ["CMD", "wget", "--spider", "-q", "--tries=1", "http://localhost:8080/settings"]
interval: 5m
timeout: 3s
networks:
redlib: