mirror of
https://github.com/nicotsx/ironmount.git
synced 2025-12-10 12:10:51 +01:00
refactor: switch from go to bun
This commit is contained in:
30
docker-compose.yml
Normal file
30
docker-compose.yml
Normal file
@@ -0,0 +1,30 @@
|
||||
services:
|
||||
ironmount:
|
||||
build:
|
||||
context: .
|
||||
dockerfile: Dockerfile.dev
|
||||
container_name: ironmount
|
||||
restart: unless-stopped
|
||||
cap_add:
|
||||
- SYS_ADMIN
|
||||
- SYS_MODULE
|
||||
ports:
|
||||
- "3000:3000"
|
||||
privileged: true
|
||||
env_file:
|
||||
- path: .env.local
|
||||
required: false
|
||||
# security_opt:
|
||||
# - apparmor:unconfined
|
||||
volumes:
|
||||
- /var/run/docker.sock:/var/run/docker.sock
|
||||
- /run/docker/plugins:/run/docker/plugins
|
||||
|
||||
- ./apps/client/app:/apps/client/app
|
||||
- ./apps/server/src:/apps/server/src
|
||||
|
||||
- ./data:/data
|
||||
|
||||
# - /home/nicolas/ironmount/tmp:/mounts #//:rshared
|
||||
environment:
|
||||
- VOLUME_ROOT=/home/nicolas/ironmount/tmp
|
||||
Reference in New Issue
Block a user