diff --git a/docker-compose.example.yml b/docker-compose.example.yml index 7a9d7ac..2666abf 100644 --- a/docker-compose.example.yml +++ b/docker-compose.example.yml @@ -1,14 +1,12 @@ 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' \ No newline at end of file + 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'