2017-04-25 14:47:04 +02:00
|
|
|
# Build keystone. It needs to be run with
|
|
|
|
# --add-host=mariadb:<ip mariadb listens tp>
|
|
|
|
# Wen starting with an initialized db,
|
|
|
|
# run keystone-manage db_sync from this docker first:
|
|
|
|
# $ docker run hpc/keystone --add-host=mariadb:<ip mariadb> "keystone-manage db_sync"
|
|
|
|
|
2017-05-10 11:21:17 +02:00
|
|
|
FROM ubuntu:zesty
|
2017-04-25 14:47:04 +02:00
|
|
|
|
2017-05-10 11:21:17 +02:00
|
|
|
RUN apt-get update
|
2017-04-25 14:47:04 +02:00
|
|
|
|
2017-05-10 11:21:17 +02:00
|
|
|
RUN apt-get install --yes keystone
|
2017-04-25 14:47:04 +02:00
|
|
|
|
|
|
|
# set admin token TODO: make this a secret
|
2017-05-11 15:55:05 +02:00
|
|
|
ADD keystone.conf /etc/keystone/keystone.conf
|
2017-04-25 14:47:04 +02:00
|
|
|
|
|
|
|
RUN mkdir /etc/keystone/fernet-keys
|
|
|
|
|
2017-05-11 15:55:05 +02:00
|
|
|
RUN chown keystone: /etc/keystone/fernet-keys
|
|
|
|
|
2017-04-25 14:47:04 +02:00
|
|
|
#RUN keystone-manage db_sync
|
2017-05-10 11:21:17 +02:00
|
|
|
CMD apachectl -DFOREGROUND
|
2017-04-25 14:47:04 +02:00
|
|
|
|