psu/Dockerfile

28 lines
639 B
Docker
Raw Normal View History

2019-08-09 01:38:18 +00:00
FROM alpine:3
2018-11-19 19:16:44 +00:00
2019-08-09 18:20:09 +00:00
ENV PSU_AUTH_TOKEN="" \
2019-07-21 02:00:04 +00:00
PSU_CONFIG="" \
PSU_CONFIG_LIST_FORMAT="" \
2019-08-09 18:20:09 +00:00
PSU_ENDPOINT_GROUP_LIST_FORMAT="" \
2019-07-21 02:00:04 +00:00
PSU_ENDPOINT_LIST_FORMAT="" \
2019-08-09 18:20:09 +00:00
PSU_INSECURE="" \
PSU_LOG_LEVEL="" \
PSU_LOGIN_PRINT="" \
2019-08-09 18:20:09 +00:00
PSU_PASSWORD="" \
2019-07-21 02:00:04 +00:00
PSU_STACK_DEPLOY_ENDPOINT="" \
PSU_STACK_DEPLOY_ENV_FILE="" \
PSU_STACK_DEPLOY_REPLACE_ENV="" \
PSU_STACK_DEPLOY_STACK_FILE="" \
PSU_STACK_LIST_ENDPOINT="" \
PSU_STACK_LIST_FORMAT="" \
2019-08-09 18:20:09 +00:00
PSU_STACK_REMOVE_ENDPOINT="" \
2019-07-21 02:00:04 +00:00
PSU_STACK_REMOVE_STRICT="" \
PSU_STATUS_FORMAT="" \
2019-08-09 18:20:09 +00:00
PSU_TIMEOUT="" \
PSU_URL="" \
PSU_USER=""
2018-11-19 19:16:44 +00:00
2019-07-21 02:00:04 +00:00
COPY psu /usr/local/bin/psu
ENTRYPOINT ["/usr/local/bin/psu"]