# Uploading theme via Theme Creator CLI

**URL:** https://meta.discourse.org/t/uploading-theme-via-theme-creator-cli/215414
**Category:** Development
**Tags:** theme-creator
**Created:** [January 20, 2022, 3:56am UTC](https://meta.discourse.org/t/uploading-theme-via-theme-creator-cli/215414 "2022-01-20T03:56:52Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![hrayner](https://avatars.discourse-cdn.com/v4/letter/h/5f9b8f/32.png) [@hrayner](https://meta.discourse.org/u/hrayner)
#### Post date: [January 20, 2022, 3:56am UTC](https://meta.discourse.org/t/uploading-theme-via-theme-creator-cli/215414/1 "2022-01-20T03:56:52Z")

</div>

Hello!

I’m trying to upload my theme using the Discourse Theme Creator CLI and I’ve run into a problem.

The [README](https://github.com/discourse/discourse_theme) says to use the ‘run’ command. I’m running Discourse in a docker container and unfortunately the run command didn’t exist until recently (see [this merged pull request](https://github.com/discourse/discourse_theme/pull/15)) , so my docker image doesn’t have the new gem in it that allows this command to be run from the command line.

So, I **think** I need to update the discourse theme ruby gem in order to be able to run this new command. Does anyone have an idea of how I can update it?

I have tried entering the docker container and running these two commands

```plaintext
bundle config unset deployment
bundle exec bundle update --all

```

But that causes many errors that look like this (for various gems)

```plaintext
An error occurred while installing raindrops (0.20.0), and Bundler cannot continue.
Make sure that `gem install raindrops -v '0.20.0' --source 'https://rubygems.org/'` succeeds before bundling.

```

I’ve tried installing the gems individually as above but I get another error. I think I may be on the wrong track here so any help would be greatly appreciated.

Thank you! 🙂
