mirror of
https://github.com/coollabsio/coolify-examples.git
synced 2026-02-18 21:38:58 +00:00
29 lines
461 B
YAML
29 lines
461 B
YAML
version: '3'
|
|
services:
|
|
nordlynx:
|
|
image: ghcr.io/bubuntux/nordlynx
|
|
container_name: nordlynx
|
|
cap_add:
|
|
- NET_ADMIN
|
|
ports:
|
|
- 3002:3002
|
|
environment:
|
|
|
|
sysctls:
|
|
|
|
restart: unless-stopped
|
|
automation:
|
|
build:
|
|
context: .
|
|
dockerfile: packages/automation/Dockerfile
|
|
args:
|
|
|
|
network_mode: service:nordlynx
|
|
volumes:
|
|
- data:/data
|
|
depends_on:
|
|
- nordlynx
|
|
volumes:
|
|
data:
|
|
external: true
|