Skip to content

Commit

Permalink
dev env
Browse files Browse the repository at this point in the history
  • Loading branch information
BuckarooBanzay committed Jan 21, 2024
1 parent cb51d35 commit 8043629
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
version: "3.6"

services:
web_ui:
image: node:19.2.0-alpine3.15
volumes:
- "./:/app"
working_dir: /app/public
command: ["npm", "ci"]

web:
image: golang:1.21.6
environment:
WEBDEV: "true"
ports:
- 8080:8080
volumes:
- "./:/app"
- "go_dir:/go"
- "go_cache:/.cache"
working_dir: /app
command: ["go", "run", "."]

minetest:
image: registry.gitlab.com/minetest/minetest/server:5.7.0
user: root

volumes:
go_cache: {}
go_dir: {}

0 comments on commit 8043629

Please sign in to comment.