psu/Dockerfile

29 lines
664 B
Docker
Raw Normal View History

2019-08-14 02:01:03 -04:00
FROM alpine:3.10
2018-11-19 14:16:44 -05:00
2019-08-09 14:20:09 -04:00
ENV PSU_AUTH_TOKEN="" \
2019-07-20 22:00:04 -04:00
PSU_CONFIG="" \
PSU_CONFIG_LIST_FORMAT="" \
2019-08-09 14:20:09 -04:00
PSU_ENDPOINT_GROUP_LIST_FORMAT="" \
2019-07-20 22:00:04 -04:00
PSU_ENDPOINT_LIST_FORMAT="" \
2019-08-09 14:20:09 -04:00
PSU_INSECURE="" \
2019-08-17 16:08:57 -04:00
PSU_LOG_FORMAT="" \
2019-08-09 14:20:09 -04:00
PSU_LOG_LEVEL="" \
PSU_LOGIN_PRINT="" \
2019-08-09 14:20:09 -04:00
PSU_PASSWORD="" \
2019-07-20 22:00:04 -04: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 14:20:09 -04:00
PSU_STACK_REMOVE_ENDPOINT="" \
2019-07-20 22:00:04 -04:00
PSU_STACK_REMOVE_STRICT="" \
PSU_STATUS_FORMAT="" \
2019-08-09 14:20:09 -04:00
PSU_TIMEOUT="" \
PSU_URL="" \
PSU_USER=""
2018-11-19 14:16:44 -05:00
2019-07-20 22:00:04 -04:00
COPY psu /usr/local/bin/psu
ENTRYPOINT ["/usr/local/bin/psu"]