rimgo/docker-compose.yml

17 lines
404 B
YAML
Raw Normal View History

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
#build: . # Uncomment to build from source
2022-01-17 22:33:51 +00:00
ports:
- 3000:3000
restart: unless-stopped
user: 65534:65534 # equivalent to `nobody`
read_only: true
security_opt:
2023-07-19 23:50:51 +00:00
- no-new-privileges
cap_drop:
- ALL
2023-07-19 23:50:51 +00:00
env_file: .env