mirror of
https://github.com/CodeforLeipzig/stadtratmonitor.git
synced 2025-04-04 09:46:43 +02:00
change naming scheme && fix CMD
This commit is contained in:
parent
93d1583ff6
commit
eb97eb65c6
5 changed files with 9 additions and 10 deletions
8
.github/workflows/docker-image.yml
vendored
8
.github/workflows/docker-image.yml
vendored
|
@ -26,7 +26,7 @@ jobs:
|
||||||
context: .
|
context: .
|
||||||
file: ./container/base/Dockerfile
|
file: ./container/base/Dockerfile
|
||||||
push: true
|
push: true
|
||||||
tags: code.cozy.town/codeforleipzig/stadtratmonitor:latest-base
|
tags: code.cozy.town/codeforleipzig/stadtratmonitor/base:latest
|
||||||
|
|
||||||
- name: Build and push Deploy image
|
- name: Build and push Deploy image
|
||||||
uses: docker/build-push-action@v2
|
uses: docker/build-push-action@v2
|
||||||
|
@ -34,7 +34,7 @@ jobs:
|
||||||
context: .
|
context: .
|
||||||
file: ./container/deploy/Dockerfile
|
file: ./container/deploy/Dockerfile
|
||||||
push: true
|
push: true
|
||||||
tags: code.cozy.town/codeforleipzig/stadtratmonitor:latest-deploy
|
tags: code.cozy.town/codeforleipzig/stadtratmonitor/deploy:latest
|
||||||
|
|
||||||
- name: Build and push Develop image
|
- name: Build and push Develop image
|
||||||
uses: docker/build-push-action@v2
|
uses: docker/build-push-action@v2
|
||||||
|
@ -42,7 +42,7 @@ jobs:
|
||||||
context: .
|
context: .
|
||||||
file: ./container/develop/Dockerfile
|
file: ./container/develop/Dockerfile
|
||||||
push: true
|
push: true
|
||||||
tags: code.cozy.town/codeforleipzig/stadtratmonitor:latest-develop
|
tags: code.cozy.town/codeforleipzig/stadtratmonitor/develop:latest
|
||||||
|
|
||||||
- name: Build and push Test image
|
- name: Build and push Test image
|
||||||
uses: docker/build-push-action@v2
|
uses: docker/build-push-action@v2
|
||||||
|
@ -50,4 +50,4 @@ jobs:
|
||||||
context: .
|
context: .
|
||||||
file: ./container/test/Dockerfile
|
file: ./container/test/Dockerfile
|
||||||
push: true
|
push: true
|
||||||
tags: code.cozy.town/codeforleipzig/stadtratmonitor:latest-test
|
tags: code.cozy.town/codeforleipzig/stadtratmonitor/test:latest
|
|
@ -8,4 +8,4 @@ WORKDIR /home/srm/app/
|
||||||
|
|
||||||
USER srm
|
USER srm
|
||||||
EXPOSE 3000
|
EXPOSE 3000
|
||||||
CMD bundle exec puma -C /home/srm/app/config/puma.rb
|
CMD bundle exec puma -C /app/config/puma.rb
|
|
@ -11,4 +11,4 @@ RUN bundle install
|
||||||
WORKDIR /home/srm/app/
|
WORKDIR /home/srm/app/
|
||||||
|
|
||||||
EXPOSE 3000
|
EXPOSE 3000
|
||||||
CMD bundle exec puma -C /home/srm/app/config/puma.rb
|
CMD bundle exec puma -C /app/config/puma.rb
|
|
@ -10,4 +10,4 @@ RUN bundle install
|
||||||
WORKDIR /home/srm/app/
|
WORKDIR /home/srm/app/
|
||||||
|
|
||||||
EXPOSE 3000
|
EXPOSE 3000
|
||||||
CMD bundle exec puma -C /home/srm/app/config/puma.rb
|
CMD bundle exec puma -C /app/config/puma.rb
|
|
@ -1,8 +1,7 @@
|
||||||
version: "3.7"
|
version: "3.7"
|
||||||
services:
|
services:
|
||||||
web:
|
web:
|
||||||
image: ---WIP---
|
image: code.cozy.town/codeforleipzig/stadtratmonitor:latest-develop
|
||||||
user: srm
|
|
||||||
volumes:
|
volumes:
|
||||||
- .:/app/
|
- .:/app/
|
||||||
ports:
|
ports:
|
||||||
|
@ -13,7 +12,7 @@ services:
|
||||||
- ELASTICSEARCH_URL=${ELASTICSEARCH_URL:-http://elasticsearch:9200}
|
- ELASTICSEARCH_URL=${ELASTICSEARCH_URL:-http://elasticsearch:9200}
|
||||||
- APPLICATION_HOST=${APPLICATION_HOST:-localhost}
|
- APPLICATION_HOST=${APPLICATION_HOST:-localhost}
|
||||||
- SHARED_IMPORT_SECRET=$SHARED_IMPORT_SECRET
|
- SHARED_IMPORT_SECRET=$SHARED_IMPORT_SECRET
|
||||||
command: ls -lah /home/srm/
|
#command: ls -lah /home/srm/
|
||||||
elasticsearch:
|
elasticsearch:
|
||||||
user: elasticsearch
|
user: elasticsearch
|
||||||
build: ./docker/elasticsearch
|
build: ./docker/elasticsearch
|
||||||
|
|
Loading…
Add table
Reference in a new issue