initial working setup

This commit is contained in:
finn 2024-08-07 09:49:30 -07:00
commit 103986f718
3 changed files with 32 additions and 0 deletions

2
.gitignore vendored Normal file
View File

@ -0,0 +1,2 @@
venv

25
compose.yaml Normal file
View File

@ -0,0 +1,25 @@
services:
ns:
container_name: natss
image: nats:alpine
networks:
- natsnet
nca:
stdin_open: true
tty: true
build:
context: ncli
networks:
- natsnet
ncb:
stdin_open: true
tty: true
build:
context: ncli
networks:
- natsnet
networks:
natsnet:
name: nn

5
ncli/Dockerfile Normal file
View File

@ -0,0 +1,5 @@
FROM golang:alpine
RUN go install github.com/nats-io/natscli/nats@latest
ENTRYPOINT ["/bin/ash"]