mirror of
https://github.com/Tha14/uam-docker.git
synced 2024-11-25 01:43:02 +01:00
18 lines
391 B
YAML
18 lines
391 B
YAML
|
version: '3.3'
|
||
|
|
||
|
services:
|
||
|
uam:
|
||
|
image: debian:bullseye-slim
|
||
|
container_name: uam
|
||
|
restart: unless-stopped
|
||
|
stop_grace_period: 20s
|
||
|
network_mode: host
|
||
|
ulimits:
|
||
|
rtprio: 95
|
||
|
memlock: -1
|
||
|
volumes:
|
||
|
- "./entrypoint.sh:/opt/entrypoint.sh"
|
||
|
command: /bin/sh -c "chmod +x /opt/entrypoint.sh && /opt/entrypoint.sh $${PBKEY}"
|
||
|
environment:
|
||
|
- PBKEY=
|