Skip to content

Commit

Permalink
chore(docker): add server as default value on PROJECT arg
Browse files Browse the repository at this point in the history
  • Loading branch information
brunocroh committed Jun 6, 2024
1 parent 4358537 commit 03b57ac
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version: "3.8"
version: '3.8'

services:
bolhadev-chat:
Expand All @@ -12,7 +12,7 @@ services:
build: ./docker/nginx/
image: brunoroh/bolhadev-nginx:latest
ports:
- "80:80"
- "443:443"
- '80:80'
- '443:443'
depends_on:
- bolhadev-chat
2 changes: 1 addition & 1 deletion docker/apps/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ ARG NODE_VERSION=18.19

# Setup pnpm and turbo on the alpine base
FROM node:${NODE_VERSION}-alpine AS base
ARG PROJECT
ARG PROJECT=server
WORKDIR /app

ENV PNPM_HOME=/usr/local/bin
Expand Down

0 comments on commit 03b57ac

Please sign in to comment.