git: 원격 저장소 연결 및 초기 커밋
Made-with: Cursor
This commit is contained in:
25
docker-compose.yml
Normal file
25
docker-compose.yml
Normal file
@@ -0,0 +1,25 @@
|
||||
services:
|
||||
pocketbase:
|
||||
image: ghcr.io/muchobien/pocketbase:latest
|
||||
restart: unless-stopped
|
||||
environment:
|
||||
PB_HOST: 0.0.0.0
|
||||
PB_PORT: 8090
|
||||
ports:
|
||||
- "8090:8090"
|
||||
volumes:
|
||||
- pocketbase_data:/pb_data
|
||||
|
||||
todo-web:
|
||||
build:
|
||||
context: .
|
||||
args:
|
||||
VITE_POCKETBASE_URL: ${VITE_POCKETBASE_URL:-http://127.0.0.1:8090}
|
||||
restart: unless-stopped
|
||||
ports:
|
||||
- "8080:80"
|
||||
depends_on:
|
||||
- pocketbase
|
||||
|
||||
volumes:
|
||||
pocketbase_data:
|
||||
Reference in New Issue
Block a user