Skip to content

Commit

Permalink
[fix] next update (#94)
Browse files Browse the repository at this point in the history
  • Loading branch information
YosukeIida committed Jun 26, 2024
1 parent a7730be commit f64d7c2
Show file tree
Hide file tree
Showing 4 changed files with 236 additions and 224 deletions.
2 changes: 1 addition & 1 deletion .docker/frontend.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# ベースイメージの作成
FROM node:18.16.0
FROM node:18.17.0

ARG CRYPT_NAME="git-crypt"
ARG CRYPT_PATH="/bin/git-crypt"
Expand Down
7 changes: 4 additions & 3 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
version: "3.7"
services:
db: # postgres
image: postgres:12
Expand Down Expand Up @@ -38,7 +37,8 @@ services:
context: .docker
dockerfile: api.Dockerfile
container_name: "account_api"
ports: ["12340:12340"]
ports:
- "12340:12340"
volumes: [./api:/hasura]
env_file: [./settings/dev/api.env]
depends_on:
Expand All @@ -52,7 +52,8 @@ services:
context: .docker
dockerfile: frontend.Dockerfile
container_name: account_front
ports: [12345:12345]
ports:
- "12345:12345"
command: sh -c "npm install && npm run dev"
volumes: [.:/repo]
env_file: [./settings/dev/front.env]
Expand Down
Loading

0 comments on commit f64d7c2

Please sign in to comment.