Revert docker compose
This commit is contained in:
parent
320c1b9d5e
commit
dd7c2fa43a
1 changed files with 11 additions and 8 deletions
|
|
@ -63,8 +63,9 @@ services:
|
||||||
mastodon_web:
|
mastodon_web:
|
||||||
container_name: mastodon_web
|
container_name: mastodon_web
|
||||||
# You can uncomment the following line if you want to not use the prebuilt image, for example if you have local code changes
|
# You can uncomment the following line if you want to not use the prebuilt image, for example if you have local code changes
|
||||||
# build: .
|
build: .
|
||||||
image: ghcr.io/mastodon/mastodon:v4.5.0
|
#image: ghcr.io/mastodon/mastodon:v4.5.0
|
||||||
|
image: teh_mastodon
|
||||||
restart: always
|
restart: always
|
||||||
env_file: .env.production
|
env_file: .env.production
|
||||||
command: bundle exec puma -C config/puma.rb
|
command: bundle exec puma -C config/puma.rb
|
||||||
|
|
@ -86,10 +87,11 @@ services:
|
||||||
mastodon_streaming:
|
mastodon_streaming:
|
||||||
container_name: mastodon_streaming
|
container_name: mastodon_streaming
|
||||||
# You can uncomment the following lines if you want to not use the prebuilt image, for example if you have local code changes
|
# You can uncomment the following lines if you want to not use the prebuilt image, for example if you have local code changes
|
||||||
# build:
|
build:
|
||||||
# dockerfile: ./streaming/Dockerfile
|
dockerfile: ./streaming/Dockerfile
|
||||||
# context: .
|
context: .
|
||||||
image: ghcr.io/mastodon/mastodon-streaming:v4.5.0
|
#image: ghcr.io/mastodon/mastodon-streaming:v4.5.0
|
||||||
|
image: teh_mastodon_streaming
|
||||||
restart: always
|
restart: always
|
||||||
env_file: .env.production
|
env_file: .env.production
|
||||||
command: node ./streaming/index.js
|
command: node ./streaming/index.js
|
||||||
|
|
@ -107,8 +109,9 @@ services:
|
||||||
|
|
||||||
sidekiq:
|
sidekiq:
|
||||||
# You can uncomment the following line if you want to not use the prebuilt image, for example if you have local code changes
|
# You can uncomment the following line if you want to not use the prebuilt image, for example if you have local code changes
|
||||||
# build: .
|
build: .
|
||||||
image: ghcr.io/mastodon/mastodon:v4.5.0
|
#image: ghcr.io/mastodon/mastodon:v4.5.0
|
||||||
|
image: teh_mastodon
|
||||||
restart: always
|
restart: always
|
||||||
env_file: .env.production
|
env_file: .env.production
|
||||||
environment:
|
environment:
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue