↳
In-reply-to
»
My proof-of-concept Container as a Service (CAS or CaaS) is now up and running. If anyone wants to have a play? ๐ค There's still heaps to do, lots of "features" missing, but you can run stuff at least ๐
โค Read More
@jmjl@tilde.green Right now:
docker stack deploy -c jmlj.yml jlmj
Where jmlj.yml
is:
---
version: "3.8"
services:
prologic:
image: r.mills.io/prologic/zs
networks:
- traefik
deploy:
mode: replicated
replicas: 1
labels:
- "traefik.enable=true"
- "traefik.http.services.prologic.loadbalancer.server.port=8000"
resources:
reservations:
memory: 16M
limits:
memory: 32M
restart_policy:
condition: any
networks:
traefik:
external: true