anonymous_overflow/docker-compose.example.yml
2023-02-02 19:05:37 -05:00

14 lines
257 B
YAML

version: '3'
services:
anonymousoverflow:
container_name: 'app'
build:
context: .
network: 'host'
environment:
- APP_URL=https://domain.com
- JWT_SIGNING_SECRET=secret
ports:
- '80:8080'
restart: 'always'