* notes/cli-end-to-end-demo.org (Database Aquisition): Starting description for the end-to-end demonstration workflow. Very simplified version of notes/cli-end-to-end.org * docker-compose-demo.yml (services): Make the pre-populated ql database storage an explicit container to get persistent data and straightforward mount semantics. * docker-compose-demo-build.yml (services): Add a docker-compose configuration for *building* the demo environment. * demo/containers/dbsdata/Dockerfile: Add dbsdata Docker image to hold initialized minio database file tree * client/containers/vscode/README.org Update vscode container to use custom plugin for later mrva redirection
8 lines
126 B
Docker
8 lines
126 B
Docker
# Use a minimal base image
|
|
FROM busybox
|
|
|
|
ADD dbsdata_backup.tar /
|
|
|
|
# Just run sh if this container is ever started
|
|
CMD ["sh"]
|