21 lines
406 B
YAML
21 lines
406 B
YAML
services:
|
|
rapid:
|
|
image: ozlerhakan/rapid:latest
|
|
container_name: rapid
|
|
hostname: rapid
|
|
mem_limit: 512m
|
|
mem_reservation: 128m
|
|
cpu_shares: 512
|
|
security_opt:
|
|
- no-new-privileges=true
|
|
read_only: true
|
|
volumes:
|
|
- /var/run/docker.sock:/var/run/docker.sock:ro
|
|
environment:
|
|
TZ: Europe/Paris
|
|
ports:
|
|
- 9660:8080 #Web UI
|
|
restart: on-failure:5
|
|
|
|
|