sus/docker-compose.yml

13 lines
199 B
YAML
Raw Permalink Normal View History

2022-05-26 01:08:50 +00:00
version: '3'
services:
sus:
build: .
2022-05-26 14:53:04 +00:00
ports: [ "8430:80" ]
2022-05-26 01:08:50 +00:00
environment:
2022-05-26 14:51:14 +00:00
- SECRET=${SECRET}
2022-05-26 01:08:50 +00:00
redis:
image: redis:7
volumes: [ "./redis:/data" ]
ports: [ "6379:6379" ]