wikimore/docker-compose-example.yml
Kumi a2f8284c55
feat: Refactors Docker setup to improve security and efficiency
Switches base image from Python to Alpine for a slimmer image and improved startup efficiency.

Uses a virtual environment for Python dependencies and adds a dedicated user for the application, enhancing security and environment isolation.

Introduces a new entrypoint script for better configuration of uWSGI server and updates Docker compose setup to include security options and resource limits. Removes old compose file in favor of a more secure configuration example.
2025-01-31 09:22:29 +01:00

17 lines
No EOL
349 B
YAML

services:
wikimore-app:
container_name: wikimore
restart: unless-stopped
image: privatecoffee/wikimore:latest
ports:
- "127.0.0.1:8109:8109"
security_opt:
- no-new-privileges:true
cap_drop:
- ALL
read_only: true
deploy:
resources:
limits:
cpus: '0.5'
memory: 300M