You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
443 B
YAML
25 lines
443 B
YAML
version: "3.9"
|
|
services:
|
|
lonk:
|
|
depends_on:
|
|
- redis
|
|
build:
|
|
context: .
|
|
args:
|
|
PROFILE: release
|
|
environment:
|
|
- LONK_CONFIG=/data/config.json
|
|
volumes:
|
|
- ./data:/data
|
|
ports:
|
|
- 8892:8080
|
|
redis:
|
|
image: 'redis:alpine'
|
|
command: redis-server --save 20 1 --loglevel warning --port 6379
|
|
volumes:
|
|
- redis:/data
|
|
expose:
|
|
- 6379
|
|
volumes:
|
|
redis:
|
|
driver: local |