12 lines
357 B
YAML
12 lines
357 B
YAML
|
services:
|
||
|
tunnel:
|
||
|
# image needs to be built first; run build.sh
|
||
|
image: ${USER}/code-tunnel:latest
|
||
|
container_name: code-tunnel
|
||
|
network_mode: host
|
||
|
volumes:
|
||
|
- /home/thord/docker:/home/workspace/docker
|
||
|
- /home/thord/source:/home/workspace/source
|
||
|
- ./.user_logged_in:/root/.user_logged_in
|
||
|
working_dir: /home/workspace
|