10 lines
186 B
Bash
10 lines
186 B
Bash
|
#/bin/bash
|
||
|
|
||
|
docker run -d -it \
|
||
|
-p 127.0.0.1:6900:6900 \
|
||
|
-p 127.0.0.1:6697:6697 \
|
||
|
-p 127.0.0.1:6667:6667 \
|
||
|
-v /${PWD}/conf/:/app/conf \
|
||
|
--name unrealircd \
|
||
|
unrealircd:latest
|