Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
C
canifa_note
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Vũ Hoàng Anh
canifa_note
Commits
087e631d
Unverified
Commit
087e631d
authored
Oct 07, 2023
by
Athurg Gooth
Committed by
GitHub
Oct 07, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
chore: optmize docker-compose.dev.yml (#2347)
Optmize docker-compose.dev.yml
parent
76fb2807
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
15 deletions
+5
-15
docker-compose.dev.yaml
docker-compose.dev.yaml
+5
-15
No files found.
docker-compose.dev.yaml
View file @
087e631d
# 1.Prepare your workspace by:
# docker compose -f docker-compose.dev.yaml run api go install github.com/cosmtrek/air@latest
# docker compose -f docker-compose.dev.yaml run web npm install
#
# 2. Start you work by:
# docker compose up -d
#
# 3. Check logs by:
# docker compose logs -f
#
services
:
services
:
db
:
db
:
image
:
mysql
image
:
mysql
volumes
:
volumes
:
-
./.air/mysql:/var/lib/mysql
-
./.air/mysql:/var/lib/mysql
api
:
api
:
image
:
golang:1.21-alpine
image
:
cosmtrek/air
working_dir
:
/work
working_dir
:
/work
command
:
air -c ./scripts/.air.toml
command
:
[
"
-c"
,
"
./scripts/.air.toml"
]
environment
:
environment
:
-
"
MEMOS_DSN=root@tcp(db)/memos"
-
"
MEMOS_DSN=root@tcp(db)/memos"
-
"
MEMOS_DRIVER=mysql"
-
"
MEMOS_DRIVER=mysql"
volumes
:
volumes
:
-
$HOME/go/pkg/:/go/pkg/
# Cache for go mod shared with the host
-
./.air/bin/:/go/bin/
# Cache for binary used only in container, such as *air*
-
.:/work/
-
.:/work/
-
$HOME/go/pkg/:/go/pkg/
# Cache for go mod shared with the host
web
:
web
:
image
:
node:18-alpine
image
:
node:18-alpine
working_dir
:
/work
working_dir
:
/work
depends_on
:
[
"
api"
]
depends_on
:
[
"
api"
]
ports
:
[
"
3001:3001"
]
ports
:
[
"
3001:3001"
]
environment
:
[
"
DEV_PROXY_SERVER=http://api:8081/"
]
environment
:
[
"
DEV_PROXY_SERVER=http://api:8081/"
]
command
:
npm run dev
entrypoint
:
[
"
/bin/sh"
,
"
-c"
]
command
:
[
"
corepack
enable
&&
pnpm
install
&&
pnpm
dev"
]
volumes
:
volumes
:
-
./web:/work
-
./web:/work
-
./.air/node_modules/:/work/node_modules/
# Cache for Node Modules
-
./.air/node_modules/:/work/node_modules/
# Cache for Node Modules
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment