mirror of
https://git.private.coffee/PrivateCoffee/wikimore.git
synced 2025-04-02 20:47:37 +03:00
Updates CI/CD workflow to trigger on tag pushes and use Forgejo credentials Renames login and push steps to reflect the new container registry Modifies documentation and compose file to point to the updated image URL
17 lines
No EOL
368 B
YAML
17 lines
No EOL
368 B
YAML
services:
|
|
wikimore-app:
|
|
container_name: wikimore
|
|
restart: unless-stopped
|
|
image: git.private.coffee/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 |