create xos database
diff --git a/containers/postgresql/Dockerfile b/containers/postgresql/Dockerfile
index 0f5c6ef..4d4ebfd 100644
--- a/containers/postgresql/Dockerfile
+++ b/containers/postgresql/Dockerfile
@@ -18,7 +18,8 @@
 USER postgres
 
 RUN /etc/init.d/postgresql start && \
-    psql --command "ALTER USER postgres WITH SUPERUSER PASSWORD 'password';"
+    psql --command "ALTER USER postgres WITH SUPERUSER PASSWORD 'password' " && \
+    psql --command "CREATE DATABASE xos"
 
 # Allow remote connections. 
 RUN echo "host all  all    0.0.0.0/0  md5" >> /etc/postgresql/9.3/main/pg_hba.conf