anonymous_overflow/docker-compose.example.yml
2023-09-24 01:13:49 -04:00

13 lines
306 B
YAML

version: '3'
services:
anonymousoverflow:
container_name: 'app'
image: 'ghcr.io/httpjamesm/anonymousoverflow:release'
environment:
- APP_URL=https://domain.com
- JWT_SIGNING_SECRET=secret
ports:
- '80:8080'
restart: 'always'