mirror of
https://git.private.coffee/PrivateCoffee/wikimore.git
synced 2025-04-04 05:27:35 +03:00
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.
17 lines
No EOL
349 B
YAML
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 |