mirror of
https://notabug.org/halcyon-suite/halcyon
synced 2024-12-23 16:30:32 +01:00
13 lines
354 B
Plaintext
13 lines
354 B
Plaintext
docker build -t halcyon/halcyon:latest .
|
|
docker run --rm -it -p 9081:80 -v ${PWD}/config:/var/www/html/config test/halcyon:latest
|
|
docker run \
|
|
--name halcyon \
|
|
--restart unless-stopped \
|
|
--net docker-private \
|
|
--ip 172.30.12.13 \
|
|
-e TZ=UTC \
|
|
-e DEBUG=1 \
|
|
-v /opt/halcyon/config:/var/www/html/config \
|
|
test/halcyon:latest
|
|
|