Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ services:
web:
# You can uncomment the following line if you want to not use the prebuilt image, for example if you have local code changes
build: .
image: kmyblue:23.0-dev
image: kmyblue:23.0
restart: always
env_file: .env.production
command: bundle exec puma -C config/puma.rb
Expand All @@ -83,7 +83,7 @@ services:
build:
dockerfile: ./streaming/Dockerfile
context: .
image: kmyblue-streaming:23.0-dev
image: kmyblue-streaming:23.0
restart: always
env_file: .env.production
command: node ./streaming/index.js
Expand All @@ -101,7 +101,7 @@ services:

sidekiq:
build: .
image: kmyblue:23.0-dev
image: kmyblue:23.0
restart: always
env_file: .env.production
command: bundle exec sidekiq
Expand Down
6 changes: 3 additions & 3 deletions lib/mastodon/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ module Version
# If you change the version number, also change the image version in docker-compose.yml.

def kmyblue_major
22
23
end

def kmyblue_minor
Expand All @@ -18,8 +18,8 @@ def kmyblue_minor

def kmyblue_flag
# 'LTS'
'dev'
# nil
# 'dev'
nil
end

def major
Expand Down
Loading