29 lines
710 B
YAML
29 lines
710 B
YAML
services:
|
|
seq:
|
|
image: datalust/seq:latest
|
|
ports:
|
|
- ${SEQ_UI_PORT}:80
|
|
- ${SEQ_SERVER_PORT}:5341
|
|
environment:
|
|
- ACCEPT_EULA=Y
|
|
- SEQ_FIRSTRUN_ADMINPASSWORDHASH=QCxh/LN52rQ/pGlajPfJpqdopsx7IX9KAi+5rcU2hETBxfjjHQXydaN9kO9h2n/yKB1DbxnmGULOSlfgsTZRbjUF/wQBrBpbELhUTybNwhAw
|
|
- BASE_URI=${SEQ_UI_HOST}:${SEQ_UI_PORT}
|
|
restart: unless-stopped
|
|
deploy:
|
|
resources:
|
|
limits:
|
|
memory: 4096M
|
|
reservations:
|
|
memory: 2048M
|
|
redis:
|
|
image: redis:alpine
|
|
ports:
|
|
- '${REDIS_PORT}:6379'
|
|
restart: unless-stopped
|
|
deploy:
|
|
resources:
|
|
limits:
|
|
memory: 4096M
|
|
reservations:
|
|
memory: 2048M
|