bash configuration
diff --git a/xos/configurations/bash/Dockerfile.bash b/xos/configurations/bash/Dockerfile.bash
new file mode 100644
index 0000000..2022392
--- /dev/null
+++ b/xos/configurations/bash/Dockerfile.bash
@@ -0,0 +1,9 @@
+RUN mkdir -p /root/setup
+ADD xos/configurations/common/admin-openrc.sh /root/setup/
+ADD xos/configurations/common/flat_net_name /root/setup/
+ADD xos/configurations/common/cloudlab-nodes.yaml /opt/xos/configurations/commmon/
+ADD xos/configurations/common/id_rsa.pub /root/setup/padmin_public_key
+
+CMD /usr/bin/make -C /opt/xos/configurations/bash -f Makefile.inside; /bin/bash
+
+#CMD ["/bin/bash"]
diff --git a/xos/configurations/bash/Makefile b/xos/configurations/bash/Makefile
new file mode 100644
index 0000000..f33ea56
--- /dev/null
+++ b/xos/configurations/bash/Makefile
@@ -0,0 +1,9 @@
+MYIP:=$(shell hostname -i)
+
+test: common_cloudlab
+	cat ../common/Dockerfile.common Dockerfile.bash > Dockerfile
+	cd ../../..; sudo docker build -t xos -f xos/configurations/bash/Dockerfile .
+	sudo docker run -i --tty --add-host="ctl:$(MYIP)" -p 9999:8000 xos
+
+common_cloudlab:
+	make -C ../common -f Makefile.cloudlab
diff --git a/xos/configurations/bash/Makefile.inside b/xos/configurations/bash/Makefile.inside
new file mode 100644
index 0000000..30bf6d6
--- /dev/null
+++ b/xos/configurations/bash/Makefile.inside
@@ -0,0 +1,6 @@
+all: setup_xos
+
+setup_xos:
+	bash /opt/xos/scripts/docker_setup_xos
+	python /opt/xos/tosca/run.py padmin@vicci.org /opt/xos/configurations/common/cloudlab.yaml
+	python /opt/xos/tosca/run.py padmin@vicci.org /opt/xos/configurations/common/cloudlab-nodes.yaml
diff --git a/xos/configurations/bash/README b/xos/configurations/bash/README
new file mode 100644
index 0000000..83322a0
--- /dev/null
+++ b/xos/configurations/bash/README
@@ -0,0 +1,5 @@
+This configuration launches XOS on Cloudlab, leaving the user in an interactive bash session.
+
+The django UI is not started automatically. To start it, execute the following commands from the bash session:
+   cd /opt/xos
+   scripts/opencloud runserver