mirror of
https://github.com/CodeforLeipzig/stadtratmonitor.git
synced 2025-04-03 17:26: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: .
|
||||
file: ./container/base/Dockerfile
|
||||
push: true
|
||||
tags: code.cozy.town/codeforleipzig/stadtratmonitor:latest-base
|
||||
tags: code.cozy.town/codeforleipzig/stadtratmonitor/base:latest
|
||||
|
||||
- name: Build and push Deploy image
|
||||
uses: docker/build-push-action@v2
|
||||
|
@ -34,7 +34,7 @@ jobs:
|
|||
context: .
|
||||
file: ./container/deploy/Dockerfile
|
||||
push: true
|
||||
tags: code.cozy.town/codeforleipzig/stadtratmonitor:latest-deploy
|
||||
tags: code.cozy.town/codeforleipzig/stadtratmonitor/deploy:latest
|
||||
|
||||
- name: Build and push Develop image
|
||||
uses: docker/build-push-action@v2
|
||||
|
@ -42,7 +42,7 @@ jobs:
|
|||
context: .
|
||||
file: ./container/develop/Dockerfile
|
||||
push: true
|
||||
tags: code.cozy.town/codeforleipzig/stadtratmonitor:latest-develop
|
||||
tags: code.cozy.town/codeforleipzig/stadtratmonitor/develop:latest
|
||||
|
||||
- name: Build and push Test image
|
||||
uses: docker/build-push-action@v2
|
||||
|
@ -50,4 +50,4 @@ jobs:
|
|||
context: .
|
||||
file: ./container/test/Dockerfile
|
||||
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
|
||||
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/
|
||||
|
||||
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/
|
||||
|
||||
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"
|
||||
services:
|
||||
web:
|
||||
image: ---WIP---
|
||||
user: srm
|
||||
image: code.cozy.town/codeforleipzig/stadtratmonitor:latest-develop
|
||||
volumes:
|
||||
- .:/app/
|
||||
ports:
|
||||
|
@ -13,7 +12,7 @@ services:
|
|||
- ELASTICSEARCH_URL=${ELASTICSEARCH_URL:-http://elasticsearch:9200}
|
||||
- APPLICATION_HOST=${APPLICATION_HOST:-localhost}
|
||||
- SHARED_IMPORT_SECRET=$SHARED_IMPORT_SECRET
|
||||
command: ls -lah /home/srm/
|
||||
#command: ls -lah /home/srm/
|
||||
elasticsearch:
|
||||
user: elasticsearch
|
||||
build: ./docker/elasticsearch
|
||||
|
|
Loading…
Add table
Reference in a new issue