change naming scheme && fix CMD

This commit is contained in:
Vri 🌈 2023-05-04 21:03:56 +02:00
parent 93d1583ff6
commit eb97eb65c6
Signed by: vrifox
GPG key ID: D40098E5B60B2197
5 changed files with 9 additions and 10 deletions

View file

@ -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

View file

@ -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

View file

@ -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

View file

@ -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

View file

@ -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