docs: use official image in exmaple

This commit is contained in:
httpjamesm 2023-09-24 01:13:49 -04:00
parent bb629da9a9
commit dcf0805334
No known key found for this signature in database

View File

@ -1,14 +1,12 @@
version: '3' version: '3'
services: services:
anonymousoverflow: anonymousoverflow:
container_name: 'app' container_name: 'app'
build: image: 'ghcr.io/httpjamesm/anonymousoverflow:release'
context: . environment:
network: 'host' - APP_URL=https://domain.com
environment: - JWT_SIGNING_SECRET=secret
- APP_URL=https://domain.com ports:
- JWT_SIGNING_SECRET=secret - '80:8080'
ports: restart: 'always'
- '80:8080'
restart: 'always'