Merge pull request 'Remove container_name, stdin and tty from dc' (#49) from microservices-dev into master
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
Reviewed-on: #49
This commit is contained in:
commit
ae529665a3
@ -3,10 +3,7 @@ version: '3.7'
|
|||||||
services:
|
services:
|
||||||
backend:
|
backend:
|
||||||
image: hub.javil.eu/budgeteer:dev
|
image: hub.javil.eu/budgeteer:dev
|
||||||
container_name: budgeteer
|
|
||||||
command: task -w run
|
command: task -w run
|
||||||
stdin_open: true # docker run -i
|
|
||||||
tty: true # docker run -t
|
|
||||||
ports:
|
ports:
|
||||||
- 1323:1323
|
- 1323:1323
|
||||||
user: '1000'
|
user: '1000'
|
||||||
@ -22,10 +19,7 @@ services:
|
|||||||
|
|
||||||
frontend:
|
frontend:
|
||||||
image: hub.javil.eu/budgeteer:dev
|
image: hub.javil.eu/budgeteer:dev
|
||||||
container_name: budgeteer_frontend
|
|
||||||
command: bash -c "cd web; yarn run dev"
|
command: bash -c "cd web; yarn run dev"
|
||||||
stdin_open: true # docker run -i
|
|
||||||
tty: true # docker run -t
|
|
||||||
ports:
|
ports:
|
||||||
- 3000:3000
|
- 3000:3000
|
||||||
user: '1000'
|
user: '1000'
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
<script lang="ts" setup>
|
<script lang="ts" setup>
|
||||||
import { computed, defineProps, onMounted, ref, watchEffect } from "vue";
|
import { computed, onMounted, ref, watchEffect } from "vue";
|
||||||
import Currency from "../components/Currency.vue";
|
import Currency from "../components/Currency.vue";
|
||||||
import { useBudgetsStore } from "../stores/budget";
|
import { useBudgetsStore } from "../stores/budget";
|
||||||
import { Category, useAccountStore } from "../stores/budget-account";
|
import { Category, useAccountStore } from "../stores/budget-account";
|
||||||
|
Loading…
x
Reference in New Issue
Block a user