29 lines
377 B
YAML
29 lines
377 B
YAML
|
version: "3.4"
|
||
|
|
||
|
volumes:
|
||
|
redis:
|
||
|
name: bit4sat-data
|
||
|
|
||
|
services:
|
||
|
bit4sat:
|
||
|
image: sp4ke/bit4sat
|
||
|
build:
|
||
|
context: .
|
||
|
|
||
|
|
||
|
environment:
|
||
|
- GO111MODULE=on
|
||
|
|
||
|
deploy:
|
||
|
replicas: 1
|
||
|
|
||
|
volumes:
|
||
|
- $PWD:/src
|
||
|
|
||
|
working_dir: /src
|
||
|
|
||
|
command:
|
||
|
- go
|
||
|
- "run *.go"
|
||
|
|