Remove container_name, stdin and tty from dc #49
@ -3,10 +3,7 @@ version: '3.7'
|
||||
services:
|
||||
backend:
|
||||
image: hub.javil.eu/budgeteer:dev
|
||||
container_name: budgeteer
|
||||
command: task -w run
|
||||
stdin_open: true # docker run -i
|
||||
tty: true # docker run -t
|
||||
ports:
|
||||
- 1323:1323
|
||||
user: '1000'
|
||||
@ -22,10 +19,7 @@ services:
|
||||
|
||||
frontend:
|
||||
image: hub.javil.eu/budgeteer:dev
|
||||
container_name: budgeteer_frontend
|
||||
command: bash -c "cd web; yarn run dev"
|
||||
stdin_open: true # docker run -i
|
||||
tty: true # docker run -t
|
||||
ports:
|
||||
- 3000:3000
|
||||
user: '1000'
|
||||
|
@ -1,5 +1,5 @@
|
||||
<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 { useBudgetsStore } from "../stores/budget";
|
||||
import { Category, useAccountStore } from "../stores/budget-account";
|
||||
|
Loading…
x
Reference in New Issue
Block a user