blob: c1590314d94fb5613259da56a7820162a2863d31 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
name: ${STACK}
networks:
edge_net:
name: ${EDGE_NET}
external: true
volumes:
pkm-data:
name: ${PKM_DATA_VOLUME}
external: true
services:
pkm-test:
container_name: ${PKM_CONTAINER}
image: ghcr.io/silverbulletmd/silverbullet
restart: unless-stopped
env_file:
- /srv/rdc/env/pkm.env
- .env
networks:
- edge_net
expose:
- 3000
volumes:
- ${PKM_DATA_VOLUME}:/space
|