2022-01-17 22:33:51 +00:00
|
|
|
version: '3'
|
|
|
|
|
|
|
|
services:
|
|
|
|
rimgo:
|
2023-07-20 02:19:25 +00:00
|
|
|
image: codeberg.org/rimgo/rimgo # Official image
|
2022-03-19 20:00:48 +00:00
|
|
|
#image: quay.io/pussthecatorg/rimgo # Unofficial image
|
2022-08-13 01:22:46 +00:00
|
|
|
#build: . # Uncomment to build from source
|
2022-01-17 22:33:51 +00:00
|
|
|
ports:
|
|
|
|
- 3000:3000
|
|
|
|
restart: unless-stopped
|
2023-03-28 21:33:03 +00:00
|
|
|
user: 65534:65534 # equivalent to `nobody`
|
|
|
|
read_only: true
|
|
|
|
security_opt:
|
2023-07-19 23:50:51 +00:00
|
|
|
- no-new-privileges
|
2023-03-28 21:33:03 +00:00
|
|
|
cap_drop:
|
|
|
|
- ALL
|
2023-07-19 23:50:51 +00:00
|
|
|
env_file: .env
|