File tree Expand file tree Collapse file tree 2 files changed +4
-6
lines changed Expand file tree Collapse file tree 2 files changed +4
-6
lines changed Original file line number Diff line number Diff line change @@ -24,6 +24,9 @@ The easiest & safest way to develop & test TLJH is with [Docker](https://www.doc
24
24
--detach \
25
25
--name=tljh-dev \
26
26
--publish 12000:80 \
27
+ --env TLJH_BOOTSTRAP_DEV=yes \
28
+ --env TLJH_BOOTSTRAP_PIP_SPEC=/srv/src \
29
+ --env PATH=/opt/tljh/hub/bin:${PATH} \
27
30
--mount type=bind,source=" $( pwd) " ,target=/srv/src \
28
31
tljh-systemd
29
32
```
Original file line number Diff line number Diff line change 1
- # Systemd inside a Docker container, for CI only
1
+ # Systemd inside a Docker container, for CI and local development
2
2
ARG BASE_IMAGE=ubuntu:22.04
3
3
FROM $BASE_IMAGE
4
4
@@ -28,9 +28,4 @@ RUN systemctl set-default multi-user.target
28
28
29
29
STOPSIGNAL SIGRTMIN+3
30
30
31
- # Uncomment these lines for a development install
32
- # ENV TLJH_BOOTSTRAP_DEV=yes
33
- # ENV TLJH_BOOTSTRAP_PIP_SPEC=/srv/src
34
- # ENV PATH=/opt/tljh/hub/bin:${PATH}
35
-
36
31
CMD ["/bin/bash" , "-c" , "exec /lib/systemd/systemd --log-target=journal 3>&1" ]
You can’t perform that action at this time.
0 commit comments