mirror of
https://github.com/kind-0/nsecbunkerd.git
synced 2025-03-17 05:13:01 +01:00
33 lines
569 B
YAML
33 lines
569 B
YAML
version: "3.3"
|
|
|
|
services:
|
|
nsecbunkerd:
|
|
image: pablof7z/nsecbunkerd
|
|
build: .
|
|
restart: unless-stopped
|
|
pids_limit: 100
|
|
mem_limit: 256mb
|
|
memswap_limit: 256mb
|
|
volumes:
|
|
- $HOME/.nsecbunker-config:/app/config
|
|
env_file:
|
|
- .env
|
|
ports:
|
|
- "3000:3000"
|
|
depends_on:
|
|
- migrations
|
|
|
|
migrations:
|
|
image: pablof7z/nsecbunkerd
|
|
volumes:
|
|
- $HOME/.nsecbunker-config:/app/config
|
|
env_file:
|
|
- .env
|
|
restart: no
|
|
entrypoint: ""
|
|
command:
|
|
- npx
|
|
- prisma
|
|
- migrate
|
|
- deploy
|