mirror of
https://github.com/casjaysdevdocker/tools
synced 2025-01-18 06:34:31 -05:00
11 lines
336 B
Bash
11 lines
336 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
docker run -d \
|
||
|
--restart always \
|
||
|
--name ircd \
|
||
|
-p 6697:6697 \
|
||
|
-p 7000:7000 \
|
||
|
-v /etc/letsencrypt/live/domain/fullchain.pem:/home/unreal/unrealircd/conf/ssl/server.cert.pem:ro \
|
||
|
-v /etc/letsencrypt/live/domain/privkey.pem:/home/unreal/unrealircd/conf/ssl/server.key.pem:ro \
|
||
|
joelnb/unrealircd:latest
|