
Change-Id: I0ee4dd03752b0b822dc49b2acaed1e39fcb1ab1e Partially-implements: blueprint install-from-source
14 lines
610 B
Docker
14 lines
610 B
Docker
FROM %%KOLLA_NAMESPACE%%/%%KOLLA_PREFIX%%base:%%KOLLA_TAG%%
|
|
MAINTAINER Kolla Project (https://launchpad.net/kolla)
|
|
|
|
# NOTE(pbourke): This is emulating the Swift "all-in-one" setups where there are 3 disks/partitions
|
|
# on which to mirror data. This is extremely inefficient and is really only to prove everything
|
|
# works in an AIO setup. For production deploys the Ansible provisioned setup should be used.
|
|
VOLUME [ "/srv/node/sdb1" ]
|
|
VOLUME [ "/srv/node/sdb2" ]
|
|
VOLUME [ "/srv/node/sdb3" ]
|
|
|
|
# Command needed to start the data container.
|
|
# Note: data containers do not need to be persistent.
|
|
CMD ["/bin/true"]
|