k3s/docker-compose.yml
senhtry ef827e9957
Adjust the startup order of docker-compose
Adjust the startup order of node and server, server service should be started at first.
2019-03-12 10:56:47 +08:00

31 lines
650 B
YAML

version: '3'
services:
server:
image: rancher/k3s:v0.1.0
command: server --disable-agent
environment:
- K3S_CLUSTER_SECRET=somethingtotallyrandom
- K3S_KUBECONFIG_OUTPUT=/output/kubeconfig.yaml
- K3S_KUBECONFIG_MODE=666
volumes:
- k3s-server:/var/lib/rancher/k3s
# This is just so that we get the kubeconfig file out
- .:/output
ports:
- 6443:6443
node:
image: rancher/k3s:v0.1.0
tmpfs:
- /run
- /var/run
privileged: true
depends_on:
- server
environment:
- K3S_URL=https://server:6443
- K3S_CLUSTER_SECRET=somethingtotallyrandom
volumes:
k3s-server: {}